Files
kotlin-fork/analysis/analysis-api/testData/components/callResolver/resolveCall/samLambda.kt
T
2024-01-19 17:05:06 +00:00

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