summaryrefslogtreecommitdiff
path: root/test/files/neg/t4842.check
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/t4842.check')
-rw-r--r--test/files/neg/t4842.check7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/files/neg/t4842.check b/test/files/neg/t4842.check
new file mode 100644
index 0000000000..b53bbdbd15
--- /dev/null
+++ b/test/files/neg/t4842.check
@@ -0,0 +1,7 @@
+t4842.scala:2: error: self constructor arguments cannot reference unconstructed `this`
+ def this(x: Int) = this(new { println(Foo.this)}) // error
+ ^
+t4842.scala:6: error: self constructor arguments cannot reference unconstructed `this`
+ def this() = { this(???)(new { println(TypeArg.this.x) } ); println("next") } // error
+ ^
+two errors found