8fca9f41eb
Modality might be null before the declaration itself is resolved to `STATUS` ^KT-52667 Fixed
13 lines
136 B
Kotlin
13 lines
136 B
Kotlin
package foo
|
|
|
|
class Arg
|
|
|
|
fun interface Foo {
|
|
fun foo(a: Arg): Arg
|
|
}
|
|
|
|
fun testMe(f: Foo) {}
|
|
|
|
fun resolveMe() {
|
|
testMe { b -> b }
|
|
} |