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

13 lines
139 B
Plaintext
Vendored

// WITH_RUNTIME
package p
import p.isFoo
class A(val n: Int)
val A.isFoo: Boolean
get() = n > 1
fun test() {
val t = A::isFoo
}