Files
kotlin-fork/idea/testData/intentions/convertPropertyToFunction/initializer.kt.after
T
2015-10-01 17:35:12 +03:00

7 lines
99 B
Plaintext
Vendored

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