e91e5db0ce
^KT-64910 fixed
13 lines
187 B
Kotlin
Vendored
13 lines
187 B
Kotlin
Vendored
class Test {
|
|
fun interface Foo {
|
|
fun foo()
|
|
}
|
|
|
|
fun uiMethod() {}
|
|
|
|
fun test(foo: Foo) {}
|
|
|
|
fun testMethodRef() {
|
|
<expr>test(this::uiMethod)</expr>
|
|
}
|
|
} |