Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6fc27c22f44d8051bf2e89f1657c0d9741c281c0
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
dataFlow
/
WhenSubject.fir.kt
blob: 3b8d12cc2568d6b6cc3b32193c9dfada379ecf2d [
file
]
interface
Expr
class
BinOp
(
val
operator
:
String
)
:
Expr
fun test
(
e
:
Expr
)
{
if
(
e
is
BinOp
)
{
when
(
e
.
operator
)
{
else
->
0
}
}
}