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