summaryrefslogtreecommitdiff
path: root/test/pending/neg/scopes.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/neg/scopes.scala')
-rw-r--r--test/pending/neg/scopes.scala14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/pending/neg/scopes.scala b/test/pending/neg/scopes.scala
deleted file mode 100644
index 0083101b00..0000000000
--- a/test/pending/neg/scopes.scala
+++ /dev/null
@@ -1,14 +0,0 @@
-case class test0(x: int, x: float)
-
-object test1 {
- val x: int = 0
- val x: float = .0f
- {
- val y: int = 0
- val y: float = .0f
- ()
- }
- def params(x: int, x: float) = x
- def curried(x: int)(y: int, y: float) = x + y
- (x: int, x: float) => x
-}