summaryrefslogtreecommitdiff
path: root/test/files/neg/t588.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/t588.scala')
-rw-r--r--test/files/neg/t588.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/files/neg/t588.scala b/test/files/neg/t588.scala
index f30937377e..1bc6d2680f 100644
--- a/test/files/neg/t588.scala
+++ b/test/files/neg/t588.scala
@@ -1,15 +1,15 @@
abstract class Test0 {
- def visit(f: Int => Unit): Boolean
+ def visit(f: Int => Unit): Boolean
def visit(f: Int => String): Boolean
}
trait Test {
type TypeA <: TraitA;
type TypeB <: TypeA with TraitB;
-
+
def f(node : TypeA) : Unit;
def f(brac : TypeB) : Unit;
-
+
trait TraitA;
trait TraitB;
-
+
}