Files
kotlin-fork/compiler/testData/diagnostics/tests/dataFlowInfoTraversal/ManyIfs.kt
T
Alexander Udalov 6b65c44d45 Optimize DataFlowInfo.and()
Instead of copying everything, we now only completely copy one data flow info
and use another as a delegation target
2012-11-16 17:56:29 +04:00

19 lines
357 B
Kotlin

fun foo(x: Number) {
if (x is Int) {
if (x is Int) {
if (x is Int) {
if (x is Int) {
if (x is Int) {
if (x is Int) {
if (x is Int) {
if (x is Int) {
if (x is Int) {
if (x is Int) {
if (x is Int) {
if (x is Int) {
if (x is Int) {
if (x is Int) {
if (x is Int) {
} } } } } } } } } } } } } } }
}