summaryrefslogtreecommitdiff
path: root/test/junit/scala/collection
diff options
context:
space:
mode:
authorRex Kerr <ichoran@gmail.com>2015-03-31 14:56:53 -0700
committerStefan Zeiger <szeiger@novocode.com>2016-08-12 13:50:37 +0200
commit30876fe2dd8cbe657a6cad6b11bbc34f10c29b36 (patch)
treef7cb3a8de91ac79ce22308f7a877c55f4dbf6755 /test/junit/scala/collection
parent6612ba010b0e70c53550d1e47141c8dc89a55f23 (diff)
downloadscala-30876fe2dd8cbe657a6cad6b11bbc34f10c29b36.tar.gz
scala-30876fe2dd8cbe657a6cad6b11bbc34f10c29b36.tar.bz2
scala-30876fe2dd8cbe657a6cad6b11bbc34f10c29b36.zip
SI-9019 TraversableLike stringPrefix broken for inner classes
This version preserves outer class and object names but discards any part of the name after a `$` that does not start with an upper-case letter. When an integer literal occurs after a `$`, the prefix up to that point is dropped so that classes defined within methods appear as top-level.
Diffstat (limited to 'test/junit/scala/collection')
-rw-r--r--test/junit/scala/collection/TraversableLikeTest.scala33
1 files changed, 33 insertions, 0 deletions
diff --git a/test/junit/scala/collection/TraversableLikeTest.scala b/test/junit/scala/collection/TraversableLikeTest.scala
new file mode 100644
index 0000000000..8588956016
--- /dev/null
+++ b/test/junit/scala/collection/TraversableLikeTest.scala
@@ -0,0 +1,33 @@
+package scala.collection
+
+import org.junit.Assert._
+import org.junit.Test
+import org.junit.runner.RunWith
+import org.junit.runners.JUnit4
+
+@RunWith(classOf[JUnit4])
+class TraversableLikeTest {
+ // For test_SI9019; out here because as of test writing, putting this in a method would crash compiler
+ class Baz[@specialized(Int) A]() extends IndexedSeq[A] {
+ def apply(i: Int) = ???
+ def length: Int = 0
+ }
+
+ @Test
+ def test_SI9019 {
+ object Foo {
+ def mkBar = () => {
+ class Bar extends IndexedSeq[Int] {
+ def apply(i: Int) = ???
+ def length: Int = 0
+ }
+ new Bar
+ }
+ }
+ val bar = Foo.mkBar()
+ assertEquals("Bar", bar.stringPrefix) // Previously would have been outermost class, TraversableLikeTest
+
+ val baz = new Baz[Int]()
+ assertEquals("TraversableLikeTest.Baz", baz.stringPrefix) // Make sure we don't see specialization $mcI$sp stuff
+ }
+}