aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/presuperContext.scala
diff options
context:
space:
mode:
authorSamuel Gruetter <samuel.gruetter@epfl.ch>2014-03-19 17:07:46 +0100
committerSamuel Gruetter <samuel.gruetter@epfl.ch>2014-03-19 17:07:46 +0100
commit33b0e7b1ab0e71f525c75705dcd91b4b7d9d0994 (patch)
treed666ced3c08e0745bebb706148abbac56df78c8c /tests/untried/pos/presuperContext.scala
parent1dfe6567fee9626106211088e41c4683342ec0f8 (diff)
downloaddotty-33b0e7b1ab0e71f525c75705dcd91b4b7d9d0994.tar.gz
dotty-33b0e7b1ab0e71f525c75705dcd91b4b7d9d0994.tar.bz2
dotty-33b0e7b1ab0e71f525c75705dcd91b4b7d9d0994.zip
apply srewrite (explicit types for implicits + no procedure syntax
for constructors) to tests/untried/pos
Diffstat (limited to 'tests/untried/pos/presuperContext.scala')
-rw-r--r--tests/untried/pos/presuperContext.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/untried/pos/presuperContext.scala b/tests/untried/pos/presuperContext.scala
index cc3426307..437765598 100644
--- a/tests/untried/pos/presuperContext.scala
+++ b/tests/untried/pos/presuperContext.scala
@@ -6,7 +6,7 @@ class B(x: Int)
class D {
class C(x: Int) extends B({val test: D = this; x}) {
- def this() {
+ def this() = {
this({val test: D = this; 1})
}
}