summaryrefslogtreecommitdiff
path: root/test/pending/neg/scopes.scala
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2006-12-13 17:09:39 +0000
committermichelou <michelou@epfl.ch>2006-12-13 17:09:39 +0000
commitd26f9ec82227e1cf844b745d89cdf655e9f24c74 (patch)
treed8c1008c126239914f1e04e0cc7390addaa8c272 /test/pending/neg/scopes.scala
parent39eba8638cd03ee5de4c60bebb1248ff2e9379ca (diff)
downloadscala-d26f9ec82227e1cf844b745d89cdf655e9f24c74.tar.gz
scala-d26f9ec82227e1cf844b745d89cdf655e9f24c74.tar.bz2
scala-d26f9ec82227e1cf844b745d89cdf655e9f24c74.zip
moved from pending
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
-}