Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
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
}
}
}