Old backing field with dollar is now forbidden

This commit is contained in:
Mikhail Glukhikh
2015-10-08 19:51:02 +03:00
parent 5117f744f7
commit 6914d09297
77 changed files with 88 additions and 637 deletions
@@ -1,6 +1,6 @@
class A(var a: Int) {
init {
$a = 3
a = 3
}
}
@@ -4,7 +4,7 @@ class A() {
fun lold() = true
val p: () -> Boolean
init {
$p = { { lold() }() }
p = { { lold() }() }
}
}