Join declaration & assignment: treat assignment with this. correctly #KT-16000 Fixed

This commit is contained in:
Mikhail Glukhikh
2017-02-01 18:07:43 +03:00
parent 84f324e04f
commit ea6e3c828d
3 changed files with 28 additions and 1 deletions
@@ -0,0 +1,13 @@
// IS_APPLICABLE: false
class My {
val x: Int<caret>
constructor(x: Int) {
this.x = x
}
constructor() {
x = 42
}
}