aboutsummaryrefslogtreecommitdiff
path: root/tests/untried
diff options
context:
space:
mode:
authorSamuel Gruetter <samuel.gruetter@epfl.ch>2014-03-19 17:36:59 +0100
committerSamuel Gruetter <samuel.gruetter@epfl.ch>2014-03-19 17:36:59 +0100
commit24ac35546c2c159403e91144e0e4add585ee9ae5 (patch)
tree7edcfe086d37e4a8cead0707aed3d6de6132c739 /tests/untried
parent33b0e7b1ab0e71f525c75705dcd91b4b7d9d0994 (diff)
downloaddotty-24ac35546c2c159403e91144e0e4add585ee9ae5.tar.gz
dotty-24ac35546c2c159403e91144e0e4add585ee9ae5.tar.bz2
dotty-24ac35546c2c159403e91144e0e4add585ee9ae5.zip
apply srewrite (no procedure syntax for constructors) to tests/untried/neg
Diffstat (limited to 'tests/untried')
-rw-r--r--tests/untried/neg/t5543.scala8
-rw-r--r--tests/untried/neg/t6666.scala2
-rw-r--r--tests/untried/neg/t7605-deprecation.scala2
3 files changed, 6 insertions, 6 deletions
diff --git a/tests/untried/neg/t5543.scala b/tests/untried/neg/t5543.scala
index 4e03e6e11..8fa4ef36f 100644
--- a/tests/untried/neg/t5543.scala
+++ b/tests/untried/neg/t5543.scala
@@ -1,19 +1,19 @@
class C1 {
type T
- def this(x: T) { this() }
+ def this(x: T) = { this() }
}
class C1a[T] {
- def this(x: T) { this() } // works, no error here
+ def this(x: T) = { this() } // works, no error here
}
class C2(x: Int) {
- def this(a: Int, b: Int = x) {
+ def this(a: Int, b: Int = x) = {
this(b)
}
}
class C3 {
val x = 0
- def this(a: Int = x) { this() }
+ def this(a: Int = x) = { this() }
}
diff --git a/tests/untried/neg/t6666.scala b/tests/untried/neg/t6666.scala
index 2495c8727..01d0c0d9e 100644
--- a/tests/untried/neg/t6666.scala
+++ b/tests/untried/neg/t6666.scala
@@ -5,7 +5,7 @@ object F {
}
class COkay extends C(0) {
- def this(a: Any) {
+ def this(a: Any) = {
this()
def x = "".toString
F.byname(x)
diff --git a/tests/untried/neg/t7605-deprecation.scala b/tests/untried/neg/t7605-deprecation.scala
index 30cd21bd6..214f32437 100644
--- a/tests/untried/neg/t7605-deprecation.scala
+++ b/tests/untried/neg/t7605-deprecation.scala
@@ -3,6 +3,6 @@ abstract class Foo {
def baz
def boo(i: Int, l: Long)
def boz(i: Int, l: Long): Unit = {}
- def this(i: Int) { this() } // Don't complain here!
+ def this(i: Int) = { this() } // Don't complain here!
def foz: Unit // Don't complain here!
}