Files
2024-01-19 17:05:06 +00:00

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>
}
}