Files
kotlin-fork/compiler/testData/codegen/bytecodeListing/sam/callableRefGenericFunInterface.kt
T
Dmitry Petrov 3438d19c22 JVM_IR indy: use 'CLASS' mode in SAM bytecode listing tests
KT-44278 KT-26060 KT-42621
2021-02-12 16:52:31 +03:00

14 lines
246 B
Kotlin
Vendored

// KOTLIN_CONFIGURATION_FLAGS: SAM_CONVERSIONS=CLASS
// WITH_SIGNATURES
// FILE: t.kt
fun interface Sam<T> {
fun get(): T
}
fun <T> expectsSam(sam: Sam<T>) = sam.get()
fun <T> foo(): T = null!!
fun <T> genericSam(): T = expectsSam(::foo)