Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
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
}
}
}