summaryrefslogtreecommitdiff
path: root/test/files/pos/bug245.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/bug245.scala')
-rw-r--r--test/files/pos/bug245.scala12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/files/pos/bug245.scala b/test/files/pos/bug245.scala
index b33dd9914f..570ac4178d 100644
--- a/test/files/pos/bug245.scala
+++ b/test/files/pos/bug245.scala
@@ -2,15 +2,15 @@ class Value {}
object Test {
- implicit def view(v: Value): int = 0;
+ implicit def view(v: Value): Int = 0
- def foo(i: Int): Int = 0;
+ def foo(i: Int): Int = 0
- def fun0 : Value = null;
- def fun0(i: Int ): Value = null;
+ def fun0 : Value = null
+ def fun0(i: Int ): Value = null
- def fun1(i: Int ): Value = null;
- def fun1(l: Long): Value = null;
+ def fun1(i: Int ): Value = null
+ def fun1(l: Long): Value = null
foo(fun0 );
foo(fun1(new Value));