summaryrefslogtreecommitdiff
path: root/test/files/pos/bug115.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/bug115.scala')
-rw-r--r--test/files/pos/bug115.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/bug115.scala b/test/files/pos/bug115.scala
index 7e83038c7c..87a5c10915 100644
--- a/test/files/pos/bug115.scala
+++ b/test/files/pos/bug115.scala
@@ -3,6 +3,6 @@ class S[A](f: A => A, x: A) {
}
class T[A](f: A => A, y: A) extends S(x: A => f(x), y) {
}
-object Test with Executable {
+object Test with Application {
new T[int](x: int => x * 2, 1);
}