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.scala20
1 files changed, 0 insertions, 20 deletions
diff --git a/test/pending/neg/scopes.scala b/test/pending/neg/scopes.scala
deleted file mode 100644
index fd31ff5f72..0000000000
--- a/test/pending/neg/scopes.scala
+++ /dev/null
@@ -1,20 +0,0 @@
-case class test0(x: Int, x: Float)
-
-object test1 {
- type t = Int
- type t = Float
- val x: Int = 0
- val x: Float = .0f;
- {
- val y: Int = 0
- val y: Float = .0f
- ()
- }
- def f1(x: Int, x: Float) = x
- def f2(x: Int)(y: Int, y: Float) = x + y
- val closure = (x: Int, x: Float) => x
- List() match {
- case x::x => x
- case Nil => Nil
- }
-}