summaryrefslogtreecommitdiff
path: root/test/files/neg/constrs.check
diff options
context:
space:
mode:
authorGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-08-12 14:39:55 +0000
committerGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-08-12 14:39:55 +0000
commitd27e89c0bc0ee1775eae09238319c44e85a44d5d (patch)
treee2f81270d39cadcbe30949757cddf4e7af8ddb42 /test/files/neg/constrs.check
parentfe4591ba0c8d727ee563ba4752a86db5d220ec76 (diff)
downloadscala-d27e89c0bc0ee1775eae09238319c44e85a44d5d.tar.gz
scala-d27e89c0bc0ee1775eae09238319c44e85a44d5d.tar.bz2
scala-d27e89c0bc0ee1775eae09238319c44e85a44d5d.zip
Fixing more deprecation warnings.
Diffstat (limited to 'test/files/neg/constrs.check')
-rw-r--r--test/files/neg/constrs.check4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/neg/constrs.check b/test/files/neg/constrs.check
index 606565d42e..3524709785 100644
--- a/test/files/neg/constrs.check
+++ b/test/files/neg/constrs.check
@@ -1,8 +1,8 @@
constrs.scala:6: error: type T is not a member of object test
- def this(y: int)(z: int)(t: this.T) = { this(this.u + y + z); Console.println(x) }
+ def this(y: Int)(z: Int)(t: this.T) = { this(this.u + y + z); Console.println(x) }
^
constrs.scala:6: error: value u is not a member of object test
- def this(y: int)(z: int)(t: this.T) = { this(this.u + y + z); Console.println(x) }
+ def this(y: Int)(z: Int)(t: this.T) = { this(this.u + y + z); Console.println(x) }
^
constrs.scala:10: error: called constructor's definition must precede calling constructor's definition
def this() = this("abc")