blob: 0b6878d6f0eb4cf1ca16e47f443a2fcb6031fea9 [file] [log] [blame]
// WITH_RUNTIME
// IS_APPLICABLE: false
class A(val n: Int) {
val <caret>foo: Boolean by lazy { n > 1 }
}
fun test() {
val t = A(1).foo
}