summaryrefslogtreecommitdiff
path: root/test/pending/run/t5427b.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/run/t5427b.scala')
-rw-r--r--test/pending/run/t5427b.scala11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/pending/run/t5427b.scala b/test/pending/run/t5427b.scala
new file mode 100644
index 0000000000..7a92b6ebbe
--- /dev/null
+++ b/test/pending/run/t5427b.scala
@@ -0,0 +1,11 @@
+import scala.reflect.mirror._
+
+class Foo { val bar = 2 }
+
+object Test extends App {
+ val foo = new Foo
+ val tpe = getType(foo)
+ val bar = tpe.nonPrivateMember(newTermName("bar"))
+ val value = getValue(foo, bar)
+ println(value)
+} \ No newline at end of file