From 99529c51c054b3873442c5cbef34b81b84798434 Mon Sep 17 00:00:00 2001 From: David MacIver Date: Thu, 30 Oct 2008 22:39:33 +0000 Subject: Test cases for some of Martin's fixes. --- test/files/jvm5/t1461.scala | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 test/files/jvm5/t1461.scala (limited to 'test/files/jvm5/t1461.scala') 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;)V + l.getGenericParameterTypes // throws GenericSignatureFormatError + } +} + +class Baz[T] + +class Foo { + def l(b: Baz[Long]) { } + def jl(b: Baz[java.lang.Long]) { } +} -- cgit v1.2.3