Files
kotlin-fork/compiler/testData/diagnostics/tests/when/withSubjectVariable/subjectVariableInIsPattern.kt
T

9 lines
191 B
Kotlin
Vendored

// FIR_IDENTICAL
// !LANGUAGE: +VariableDeclarationInWhenSubject
// !DIAGNOSTICS: -UNUSED_VARIABLE -UNUSED_PARAMETER
fun test(x: Any) {
when (val y = x) {
is String -> {}
}
}