summaryrefslogtreecommitdiff
path: root/test/files/neg/constrs.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/constrs.scala')
-rw-r--r--test/files/neg/constrs.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/neg/constrs.scala b/test/files/neg/constrs.scala
index e425a25120..969f593a2d 100644
--- a/test/files/neg/constrs.scala
+++ b/test/files/neg/constrs.scala
@@ -1,12 +1,12 @@
object test {
- abstract class Test(x: int) {
+ abstract class Test(x: Int) {
type T;
val u = x;
- 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) }
}
- class Foo(x: int) {
+ class Foo(x: Int) {
def this() = this("abc")
def this(x: String) = this(1)
def this(x: boolean) = this(x)