summaryrefslogtreecommitdiff
path: root/test/files/neg/scopes.check
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.check
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.check')
-rw-r--r--test/files/neg/scopes.check30
1 files changed, 0 insertions, 30 deletions
diff --git a/test/files/neg/scopes.check b/test/files/neg/scopes.check
deleted file mode 100644
index bb8e15058b..0000000000
--- a/test/files/neg/scopes.check
+++ /dev/null
@@ -1,30 +0,0 @@
-scopes.scala:1: error: x is already defined as value x
-case class test0(x: int, x: float)
- ^
-scopes.scala:5: error: t is already defined as type t
- type t = float
- ^
-scopes.scala:7: error: x is already defined as value x
- val x: float = .0f;
- ^
-scopes.scala:10: error: y is already defined as value y
- val y: float = .0f
- ^
-scopes.scala:13: error: x is already defined as value x
- def f1(x: int, x: float) = x
- ^
-scopes.scala:14: error: y is already defined as value y
- def f2(x: int)(y: int, y: float) = x + y
- ^
-scopes.scala:15: error: x is already defined as value x
- val closure = (x: int, x: float) => x
- ^
-scopes.scala:17: error: x is already defined as value x
- case x::x => x
- ^
-scopes.scala:1: error: type mismatch;
- found : float
- required: int
-case class test0(x: int, x: float)
- ^
-9 errors found