summaryrefslogtreecommitdiff
path: root/test/files/jvm5/t1461.scala
diff options
context:
space:
mode:
authorDavid MacIver <david.maciver@gmail.com>2008-10-30 22:39:33 +0000
committerDavid MacIver <david.maciver@gmail.com>2008-10-30 22:39:33 +0000
commit99529c51c054b3873442c5cbef34b81b84798434 (patch)
treee4fcea6afc6de516bf45b40276f6390f6ae90327 /test/files/jvm5/t1461.scala
parent683e15f02b6e9980a9017e9193651c746685a2eb (diff)
downloadscala-99529c51c054b3873442c5cbef34b81b84798434.tar.gz
scala-99529c51c054b3873442c5cbef34b81b84798434.tar.bz2
scala-99529c51c054b3873442c5cbef34b81b84798434.zip
Test cases for some of Martin's fixes.
Diffstat (limited to 'test/files/jvm5/t1461.scala')
-rw-r--r--test/files/jvm5/t1461.scala18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/files/jvm5/t1461.scala b/test/files/jvm5/t1461.scala
new file mode 100644
index 0000000000..f0e3cea6cd
--- /dev/null
+++ b/test/files/jvm5/t1461.scala
@@ -0,0 +1,18 @@
+
+object Test {
+ def main(args: Array[String]) {
+ val jl = classOf[Foo].getMethod("jl", classOf[Baz[_]])
+ jl.getGenericParameterTypes // works fine
+
+ val l = classOf[Foo].getMethod("l", classOf[Baz[_]])
+ // By debugger inspection l.signature is (Ltest/Baz<J>;)V
+ l.getGenericParameterTypes // throws GenericSignatureFormatError
+ }
+}
+
+class Baz[T]
+
+class Foo {
+ def l(b: Baz[Long]) { }
+ def jl(b: Baz[java.lang.Long]) { }
+}