summaryrefslogtreecommitdiff
path: root/test/pos/bug217.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pos/bug217.scala')
-rw-r--r--test/pos/bug217.scala13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/pos/bug217.scala b/test/pos/bug217.scala
deleted file mode 100644
index 15a9f16a1b..0000000000
--- a/test/pos/bug217.scala
+++ /dev/null
@@ -1,13 +0,0 @@
-object Test {
-
- def foo[t](fun: Function0[t]): t = fun();
-
- def bar(x: Int): Unit = {
- foo(() => 0);
- ()
- }
-
- def main(args: Array[String]): Unit = bar(32);
-
-}
-