summaryrefslogtreecommitdiff
path: root/test/files/neg/saito.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/saito.scala')
-rw-r--r--test/files/neg/saito.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/neg/saito.scala b/test/files/neg/saito.scala
index b4fcd598e4..bfabb4edf4 100644
--- a/test/files/neg/saito.scala
+++ b/test/files/neg/saito.scala
@@ -2,13 +2,13 @@ class B {}
class A { self: B =>
def m(): B = {
this
- }
+ }
}
object Exec{
def main(args: Array[String]): Unit = {
val a: A = new A; // should not be allowed
- val b: B = a.m();
+ val b: B = a.m();
}
}