summaryrefslogtreecommitdiff
path: root/test/files/pos/t1107b
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t1107b')
-rw-r--r--test/files/pos/t1107b/O.scala4
-rw-r--r--test/files/pos/t1107b/T.scala2
2 files changed, 3 insertions, 3 deletions
diff --git a/test/files/pos/t1107b/O.scala b/test/files/pos/t1107b/O.scala
index aa605a6d09..0198867704 100644
--- a/test/files/pos/t1107b/O.scala
+++ b/test/files/pos/t1107b/O.scala
@@ -4,10 +4,10 @@ object O
case s: Sub => true
case _ => false
}
-
+
def main(args: Array[String]): Unit = {
val c = new AnyRef with C
c.bob.toString + c.bob2.toString
- }
+ }
}
diff --git a/test/files/pos/t1107b/T.scala b/test/files/pos/t1107b/T.scala
index 1f3712d529..0dff0b94fd 100644
--- a/test/files/pos/t1107b/T.scala
+++ b/test/files/pos/t1107b/T.scala
@@ -1,6 +1,6 @@
sealed trait Top
sealed trait Sub extends Top
-trait C {
+trait C {
private object P extends Sub
def bob() = P.getClass
def bob2() = O.d(P)