summaryrefslogtreecommitdiff
path: root/test/files/neg/scopes.scala
diff options
context:
space:
mode:
authorGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-08-05 09:55:58 +0000
committerGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-08-05 09:55:58 +0000
commit6d5656f6374cc558efad6c8c2c651d070738af8c (patch)
tree7db48772ea505e69450d5707d693015283a7914c /test/files/neg/scopes.scala
parent6e159702e1e2b12e30ca014441591b7be03e8f19 (diff)
downloadscala-6d5656f6374cc558efad6c8c2c651d070738af8c.tar.gz
scala-6d5656f6374cc558efad6c8c2c651d070738af8c.tar.bz2
scala-6d5656f6374cc558efad6c8c2c651d070738af8c.zip
Moving currently problematic tests to pending.
Diffstat (limited to 'test/files/neg/scopes.scala')
-rw-r--r--test/files/neg/scopes.scala20
1 files changed, 0 insertions, 20 deletions
diff --git a/test/files/neg/scopes.scala b/test/files/neg/scopes.scala
deleted file mode 100644
index e38a0a3d2e..0000000000
--- a/test/files/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
- }
-}