summaryrefslogtreecommitdiff
path: root/test/pending/run/t0947.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/run/t0947.scala')
-rw-r--r--test/pending/run/t0947.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/pending/run/t0947.scala b/test/pending/run/t0947.scala
index f5daca3d30..4297bb8777 100644
--- a/test/pending/run/t0947.scala
+++ b/test/pending/run/t0947.scala
@@ -3,6 +3,6 @@ import scala.tools.nsc._
object Test extends Application {
class Foo { override def toString = "Foo" };
- val int = new Interpreter(new Settings());
- int.bind("foo", "Test.Foo", new Test.Foo());
+ val Int = new Interpreter(new Settings());
+ Int.bind("foo", "Test.Foo", new Test.Foo());
}