Files
kotlin-fork/idea/testData/intentions/convertPropertyToFunction/delegatingProperty.kt
T
2015-02-05 23:12:38 +03:00

11 lines
192 B
Kotlin
Vendored

// WITH_RUNTIME
// IS_APPLICABLE: false
import kotlin.properties.Delegates
class A(val n: Int) {
val <caret>foo: Boolean by Delegates.lazy { n > 1 }
}
fun test() {
val t = A(1).foo
}