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

10 lines
191 B
Kotlin
Vendored

// 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
}
}