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

7 lines
96 B
Kotlin
Vendored

class A(val n: Int) {
val <caret>foo: Boolean = n > 1
}
fun test() {
val t = A(1).foo
}