summaryrefslogtreecommitdiff
path: root/test/files/pos/rebind.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/rebind.scala')
-rw-r--r--test/files/pos/rebind.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/rebind.scala b/test/files/pos/rebind.scala
index 3b7b27ac34..61ff0c223e 100644
--- a/test/files/pos/rebind.scala
+++ b/test/files/pos/rebind.scala
@@ -9,5 +9,5 @@ trait Bar {
def foo: Inner = foo;
}
class Test extends Foo with Bar {
- System.out.println(foo.inner);
+ Console.println(foo.inner);
}