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.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pending/run/t5427c.scala b/test/pending/run/t5427c.scala
index 7095158e85..ba71803080 100644
--- a/test/pending/run/t5427c.scala
+++ b/test/pending/run/t5427c.scala
@@ -5,7 +5,7 @@ class Foo(bar: Int)
object Test extends App {
val foo = new Foo(2)
val tpe = getType(foo)
- val bar = tpe.nonPrivateMember(newTermName("bar"))
+ val bar = tpe.nonPrivateMember(TermName("bar"))
bar match {
case NoSymbol => println("no public member")
case _ => println("i'm screwed")