summaryrefslogtreecommitdiff
path: root/test/pending
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending')
-rw-r--r--test/pending/pos/t5091.scala11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/pending/pos/t5091.scala b/test/pending/pos/t5091.scala
deleted file mode 100644
index 217e83f66d..0000000000
--- a/test/pending/pos/t5091.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-object RecursiveValueNeedsType {
-
- def foo(param: String) = 42
- def bar(n: Int) = 42
-
- {
- val xxx = foo(param = null)
- val param = bar(xxx)
- }
-
-}