Files
kotlin-fork/compiler/testData/diagnostics/tests/callableReference/resolve/kt12338.kt
T

11 lines
208 B
Kotlin
Vendored

// FIR_IDENTICAL
// KT-12338 Compiler error ERROR: Rewrite at slice LEXICAL_SCOPE key: REFERENCE_EXPRESSION with when and function references
fun a() { }
fun test() {
when {
true -> ::a
}
}