summaryrefslogtreecommitdiff
path: root/test/files/run/t1167.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t1167.scala')
-rw-r--r--test/files/run/t1167.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/run/t1167.scala b/test/files/run/t1167.scala
index 25e42ffd4d..ac9626227b 100644
--- a/test/files/run/t1167.scala
+++ b/test/files/run/t1167.scala
@@ -7,13 +7,13 @@ trait Test1 {
(i:Int) => i + 5
}
}
-
+
abstract class Foo {
override def toString = getClass.getSimpleName
-
+
abstract class Bar {
override def toString = getClass.getSimpleName
- }
+ }
}
object Test extends Application {