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

9 lines
120 B
Plaintext
Vendored

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