Create from Usage: Add delegation call to secondary constructor declaration

This commit is contained in:
Alexey Sedunov
2016-02-05 16:27:11 +03:00
parent 6696d2b70a
commit eabe675dbf
9 changed files with 75 additions and 7 deletions
@@ -0,0 +1,7 @@
// "Create secondary constructor" "true"
// ERROR: There's a cycle in the delegation calls chain
class Creation(val f: Int) {
constructor() : this(<caret>)
}
val v = Creation()