summaryrefslogtreecommitdiff
path: root/test/files/neg
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg')
-rw-r--r--test/files/neg/bug145.scala2
-rw-r--r--test/files/neg/bug170.scala2
-rw-r--r--test/files/neg/bug191.scala2
3 files changed, 3 insertions, 3 deletions
diff --git a/test/files/neg/bug145.scala b/test/files/neg/bug145.scala
index 5845393ac8..da66ddba05 100644
--- a/test/files/neg/bug145.scala
+++ b/test/files/neg/bug145.scala
@@ -11,7 +11,7 @@ class C extends B[Int] {
override def foo(x: Int): Int = x;
}
class D extends C with I[Int];
-object T with Executable {
+object T with Application {
System.out.println((new D).foo(3));
}
diff --git a/test/files/neg/bug170.scala b/test/files/neg/bug170.scala
index b1f712804e..8e66a2e451 100644
--- a/test/files/neg/bug170.scala
+++ b/test/files/neg/bug170.scala
@@ -10,6 +10,6 @@ class D extends J with I {
abstract override def foo(): Unit = super.foo();
}
-object Test with Executable {
+object Test with Application {
(new D).foo();
}
diff --git a/test/files/neg/bug191.scala b/test/files/neg/bug191.scala
index 1ff566137e..21e45b88e0 100644
--- a/test/files/neg/bug191.scala
+++ b/test/files/neg/bug191.scala
@@ -10,6 +10,6 @@ class B extends A {
}
foo(new C);
}
-object Main with Executable {
+object Main with Application {
val b = new B;
}