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 df633d7ade..6c5b73ec4a 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 Executable {
+object Test with Application {
new Foo();
System.out.println("bug211 completed");
}