11 lines
208 B
Kotlin
Vendored
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
|
|
}
|
|
}
|