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