summaryrefslogtreecommitdiff
path: root/test-nsc/files/pos/maxim1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test-nsc/files/pos/maxim1.scala')
-rw-r--r--test-nsc/files/pos/maxim1.scala5
1 files changed, 0 insertions, 5 deletions
diff --git a/test-nsc/files/pos/maxim1.scala b/test-nsc/files/pos/maxim1.scala
deleted file mode 100644
index 58916beb8a..0000000000
--- a/test-nsc/files/pos/maxim1.scala
+++ /dev/null
@@ -1,5 +0,0 @@
-object test {
- def f(x: Int)(y: Int) = x + y;
- def y: Int => Int = f(2);
- def main = y(1);
-}