Fix Delegates.lazy usages in testData

This commit is contained in:
Ilya Gorbunov
2015-11-03 23:18:58 +03:00
parent 70fdc379ef
commit 850c1518c8
4 changed files with 14 additions and 11 deletions
@@ -1,9 +1,8 @@
// WITH_RUNTIME
// IS_APPLICABLE: false
import kotlin.properties.Delegates
class A(val n: Int) {
val <caret>foo: Boolean by Delegates.lazy { n > 1 }
val <caret>foo: Boolean by lazy { n > 1 }
}
fun test() {