summaryrefslogtreecommitdiff
path: root/test/files/run/t3857.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-03-23 22:35:09 +0000
committerPaul Phillips <paulp@improving.org>2011-03-23 22:35:09 +0000
commita45be8b2851b8bc76ffa40deb9810568ed5b69f1 (patch)
treee7337ff79c949d9390eda8aeb11f984c423f8af2 /test/files/run/t3857.scala
parent3491672e8667a7e5b8d9bd3d23239757cf1b7a85 (diff)
downloadscala-a45be8b2851b8bc76ffa40deb9810568ed5b69f1.tar.gz
scala-a45be8b2851b8bc76ffa40deb9810568ed5b69f1.tar.bz2
scala-a45be8b2851b8bc76ffa40deb9810568ed5b69f1.zip
Spiced up the signature test infrastructure a b...
Spiced up the signature test infrastructure a bunch, wrote some more tests, restored the tests in pending. No review.
Diffstat (limited to 'test/files/run/t3857.scala')
-rw-r--r--test/files/run/t3857.scala20
1 files changed, 7 insertions, 13 deletions
diff --git a/test/files/run/t3857.scala b/test/files/run/t3857.scala
index 0c8dc996ce..b33685d4f2 100644
--- a/test/files/run/t3857.scala
+++ b/test/files/run/t3857.scala
@@ -1,17 +1,11 @@
-class ScalaGeneric { var s: java.util.Set[String] = _ }
+import scala.tools.partest._
+class ScalaGeneric { var s: java.util.Set[String] = _ }
trait ScalaGeneric2Trait { var s: java.util.Set[String] = _ }
-class ScalaGeneric2 extends ScalaGeneric2Trait
-
-object Test extends App {
- println(classOf[ScalaGeneric].getDeclaredField("s").toGenericString)
- // java.util.Set<java.lang.String> ScalaGeneric.s
+class ScalaGeneric2 extends ScalaGeneric2Trait { }
- println(classOf[ScalaGeneric2].getDeclaredField("s").toGenericString)
- // After r24319 this comment was:
- // java.util.Set ScalaGeneric2.s -- no signature should be found because it was mixed in.
- //
- // Having reverted that with this commit, I note the original comment since
- // the original signature is also back.
- // java.util.Set ScalaGeneric2.s -- should be same as above
+object Test extends App with SigTest {
+ show[ScalaGeneric]()
+ show[ScalaGeneric2Trait]()
+ show[ScalaGeneric2]()
}