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

12 lines
134 B
Plaintext
Vendored

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