summaryrefslogtreecommitdiff
path: root/test/files/pos/t911.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t911.scala')
-rw-r--r--test/files/pos/t911.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/files/pos/t911.scala b/test/files/pos/t911.scala
index 224b14cda3..cfa4f49dc1 100644
--- a/test/files/pos/t911.scala
+++ b/test/files/pos/t911.scala
@@ -1,6 +1,6 @@
object Test {
-def foo : Any = {
- case class Foo {}
- Foo;
-}
+ def foo: Any = {
+ case class Foo() {}
+ Foo;
+ }
}