3394097f47
To test production resolveToFirSymbol entry point ^KT-57850
13 lines
143 B
Kotlin
13 lines
143 B
Kotlin
package foo
|
|
|
|
class Arg
|
|
|
|
fun interface Foo {
|
|
fun foo(a: Arg): Arg
|
|
}
|
|
|
|
fun testMe(f: Foo) {}
|
|
|
|
fun resolve<caret>Me() {
|
|
testMe { b -> b }
|
|
} |