summaryrefslogtreecommitdiff
path: root/test/files/run/reflection-simple.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/reflection-simple.scala')
-rw-r--r--test/files/run/reflection-simple.scala11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/files/run/reflection-simple.scala b/test/files/run/reflection-simple.scala
new file mode 100644
index 0000000000..fb3feec3cb
--- /dev/null
+++ b/test/files/run/reflection-simple.scala
@@ -0,0 +1,11 @@
+// a.scala
+// Wed May 2 01:01:22 PDT 2012
+
+object Test {
+ def main(args: Array[String]) {
+ System.out.println("Running")
+ case class Foo(a: Int, b: Int, c: Int)
+ val props = reflect.mirror.classToType(classOf[Foo]).members.filter(_.isTerm).map(_.toString)
+ props.toList.sorted foreach System.out.println
+ }
+}