Files
kotlin/compiler/testData/diagnostics/tests/callableReference/function/localConstructor.fir.kt

11 lines
133 B
Kotlin
Vendored

// !CHECK_TYPE
import kotlin.reflect.KFunction0
fun main() {
class A
val x = ::A
checkSubtype<KFunction0<A>>(x)
}