summaryrefslogtreecommitdiff
path: root/test/files/neg/abstract-class-2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/abstract-class-2.scala')
-rw-r--r--test/files/neg/abstract-class-2.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/neg/abstract-class-2.scala b/test/files/neg/abstract-class-2.scala
index 19f74f3da6..be45a09343 100644
--- a/test/files/neg/abstract-class-2.scala
+++ b/test/files/neg/abstract-class-2.scala
@@ -1,7 +1,7 @@
class P {
trait S1
val p = new P
-
+
trait S2 {
def f(x: p.S1): Int
}
@@ -10,5 +10,5 @@ class P {
class P2 extends P {
object O2 extends S2 {
def f(x: S1) = 5
- }
+ }
}