Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
dataFlow
/
WhenSubject.kt
blob: 4650a6f833f1956582b6902821ec512ce5b74f51 [
file
]
interface
Expr
class
BinOp
(
val
operator
:
String
)
:
Expr
fun test
(
e
:
Expr
)
{
if
(
e
is
BinOp
)
{
when
(<!
DEBUG_INFO_SMARTCAST
!>
e
<!>.
operator
)
{
else
->
0
}
}
}