6a1923a477
#KT-37749 Fixed
9 lines
133 B
Kotlin
Vendored
9 lines
133 B
Kotlin
Vendored
fun interface KotlinFace {
|
|
fun single()
|
|
}
|
|
|
|
fun useSam(kf: KotlinFace) {}
|
|
|
|
fun callSam() {
|
|
useSam(kf = <caret>KotlinFace {})
|
|
} |