summaryrefslogtreecommitdiff
path: root/test/files/pos/bug211.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/bug211.scala')
-rw-r--r--test/files/pos/bug211.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/bug211.scala b/test/files/pos/bug211.scala
index 6c5b73ec4a..8c5cf1dc1e 100644
--- a/test/files/pos/bug211.scala
+++ b/test/files/pos/bug211.scala
@@ -1,7 +1,7 @@
trait A;
trait B;
class Foo: (A with B) extends A with B;
-object Test with Application {
+object Test extends Application {
new Foo();
System.out.println("bug211 completed");
}