summaryrefslogtreecommitdiff
path: root/test/pending/run/t5427c.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/run/t5427c.scala')
-rw-r--r--test/pending/run/t5427c.scala13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/pending/run/t5427c.scala b/test/pending/run/t5427c.scala
deleted file mode 100644
index ba71803080..0000000000
--- a/test/pending/run/t5427c.scala
+++ /dev/null
@@ -1,13 +0,0 @@
-import scala.reflect.runtime.universe._
-
-class Foo(bar: Int)
-
-object Test extends App {
- val foo = new Foo(2)
- val tpe = getType(foo)
- val bar = tpe.nonPrivateMember(TermName("bar"))
- bar match {
- case NoSymbol => println("no public member")
- case _ => println("i'm screwed")
- }
-} \ No newline at end of file