summaryrefslogtreecommitdiff
path: root/test/files/run/t0807.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t0807.scala')
-rw-r--r--test/files/run/t0807.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/t0807.scala b/test/files/run/t0807.scala
index 1a1add6b3a..1e2a26664a 100644
--- a/test/files/run/t0807.scala
+++ b/test/files/run/t0807.scala
@@ -1,5 +1,5 @@
trait A
-trait B extends A { val x = println("early") }
+trait B extends A { val x = println("early") }
object Test extends App {
new B {}
}