From 438c7a4540fe2852f48a046a99b937187902afd7 Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Fri, 24 Jun 2011 13:16:03 +0000 Subject: A test case from recently closed #490, no review. --- test/files/pos/getClassType.scala | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 test/files/pos/getClassType.scala (limited to 'test/files/pos/getClassType.scala') diff --git a/test/files/pos/getClassType.scala b/test/files/pos/getClassType.scala new file mode 100644 index 0000000000..7482788a41 --- /dev/null +++ b/test/files/pos/getClassType.scala @@ -0,0 +1,16 @@ +trait IdlBase + +class IdlConcrete extends IdlBase + +class A { + // In general, this method should not need an instance to reflect on it, so + // take a Class[] + def reflect(clazz : Class[_ <: IdlBase]) = { + // Get a list of all its methods and build a hash keyed by method name + // for statistics recording. + } + + // But I also really have an IdlConcrete generated by Spring here... + val idl = new IdlConcrete + reflect(idl.getClass) +} -- cgit v1.2.3