6a1923a477
#KT-37749 Fixed
13 lines
183 B
Plaintext
Vendored
13 lines
183 B
Plaintext
Vendored
fun interface KotlinFace {
|
|
fun single()
|
|
}
|
|
|
|
fun useSam(kf: KotlinFace) {}
|
|
|
|
fun callSam() {
|
|
useSam(kf = object : KotlinFace {
|
|
override fun single() {
|
|
|
|
}
|
|
})
|
|
} |