From 210fdccbfb6d7d367360300abc2fa9aaa1cb6acc Mon Sep 17 00:00:00 2001 From: michelou Date: Mon, 8 Jan 2007 12:01:19 +0000 Subject: added test case in neg/scopes.scala --- test/files/neg/scopes.check | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) (limited to 'test/files/neg/scopes.check') diff --git a/test/files/neg/scopes.check b/test/files/neg/scopes.check index 891267ddd4..09b1bcbdb6 100644 --- a/test/files/neg/scopes.check +++ b/test/files/neg/scopes.check @@ -4,22 +4,25 @@ case class test0(x: int, x: float) scopes.scala:2: error: x is already defined as value x ^ -scopes.scala:5: error: x is already defined as value x +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:8: error: y is already defined as value y +scopes.scala:10: error: y is already defined as value y val y: float = .0f ^ -scopes.scala:11: error: x is already defined as value x +scopes.scala:13: error: x is already defined as value x def f1(x: int, x: float) = x ^ -scopes.scala:12: error: y is already defined as value y +scopes.scala:14: error: y is already defined as value y def f2(x: int)(y: int, y: float) = x + y ^ -scopes.scala:13: error: x is already defined as value x +scopes.scala:15: error: x is already defined as value x (x: int, x: float) => x ^ -scopes.scala:15: error: x is already defined as value x +scopes.scala:17: error: x is already defined as value x case x::x => x ^ -8 errors found +9 errors found -- cgit v1.2.3