summaryrefslogtreecommitdiff
path: root/test/pos/bug115.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pos/bug115.scala')
-rw-r--r--test/pos/bug115.scala8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/pos/bug115.scala b/test/pos/bug115.scala
deleted file mode 100644
index 87a5c10915..0000000000
--- a/test/pos/bug115.scala
+++ /dev/null
@@ -1,8 +0,0 @@
-class S[A](f: A => A, x: A) {
- System.out.println(f(x));
-}
-class T[A](f: A => A, y: A) extends S(x: A => f(x), y) {
-}
-object Test with Application {
- new T[int](x: int => x * 2, 1);
-}