Files
kotlin-fork/compiler/testData/diagnostics/tests/dataFlow/TupleExpression.jet
T
Andrey Breslav cf3091adb5 Data flow info always taken into account in safeGetType()
The dangerous method removed
2012-05-13 12:58:50 +04:00

8 lines
83 B
Plaintext

class C(val f : Int)
fun test(e : Any) {
if (e is C) {
#(e.f)
}
}