summaryrefslogtreecommitdiff
path: root/test/files/pos/getClassType.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/getClassType.scala')
-rw-r--r--test/files/pos/getClassType.scala16
1 files changed, 16 insertions, 0 deletions
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)
+}