Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
when
/
kt49702.kt
blob: c30d9ee360a984df969238d5f1f6879d6b8546d8 [
file
]
// FIR_IDENTICAL
sealed
class
A
{
class
B
:
A
()
class
<!
SYNTAX
!><!>
:
A
()
fun test
(
a
:
A
)
{
<!
NO_ELSE_IN_WHEN
!>
when
<!>(
a
)
{
}
}
}