16 lines
363 B
Kotlin
Vendored
16 lines
363 B
Kotlin
Vendored
package h
|
|
|
|
//traits to make ambiguity with function literal as an argument
|
|
interface A
|
|
interface B
|
|
interface C: A, B
|
|
|
|
fun <T> foo(<!UNUSED_PARAMETER!>a<!>: A, f: () -> T): T = f()
|
|
fun <T> foo(<!UNUSED_PARAMETER!>b<!>: B, f: () -> T): T = f()
|
|
|
|
fun test(c: C) {
|
|
<!CANNOT_COMPLETE_RESOLVE!>foo<!>(c) f@ {
|
|
c<!UNNECESSARY_NOT_NULL_ASSERTION!>!!<!>
|
|
}
|
|
}
|