10 lines
174 B
Kotlin
Vendored
10 lines
174 B
Kotlin
Vendored
// !LANGUAGE: +VariableDeclarationInWhenSubject
|
|
// !DIAGNOSTICS: +UNUSED_VARIABLE
|
|
|
|
fun foo(): Any = 42
|
|
|
|
fun test() {
|
|
when (val <!UNUSED_VARIABLE!>x<!> = foo()) {
|
|
}
|
|
}
|