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, 10 insertions, 10 deletions
diff --git a/test/pending/neg/scopes.scala b/test/pending/neg/scopes.scala
index e38a0a3d2e..fd31ff5f72 100644
--- a/test/pending/neg/scopes.scala
+++ b/test/pending/neg/scopes.scala
@@ -1,18 +1,18 @@
-case class test0(x: int, x: float)
+case class test0(x: Int, x: Float)
object test1 {
- type t = int
- type t = float
- val x: int = 0
- val x: float = .0f;
+ type t = Int
+ type t = Float
+ val x: Int = 0
+ val x: Float = .0f;
{
- val y: int = 0
- val y: 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
+ 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