9ec87c01ab
#KT-8812 Fixed
12 lines
138 B
Kotlin
Vendored
12 lines
138 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
package p
|
|
|
|
import p.isFoo
|
|
|
|
class A(val n: Int)
|
|
|
|
fun A.<caret>isFoo(): Boolean = n > 1
|
|
|
|
fun test() {
|
|
val t = A::isFoo
|
|
} |