fun bar(map: /*T2@*/HashMap, list1: /*T4@*/List, list2: /*T6@*/List) { for (entry: /*T9@*/MutableMap.MutableEntry in map/*T2@HashMap*/.entries/*MutableSet>*/) { val value: /*T10@*/Int = entry/*T9@MutableEntry*/.value/*T8@Int*/ if (entry/*T9@MutableEntry*/.key/*T7@String*/ == null/*LIT*/) { println(value/*T10@Int*/ + 1/*LIT*//*LIT*/) } } for (i: /*T11@*/Int in list1/*T4@List*/) { i/*T11@Int*/ + 1/*LIT*/ } for (i: /*T12@*/String? in list2/*T6@List*/) { i/*T12@String*/ == null } } //T2 := LOWER due to 'USE_AS_RECEIVER' //T9 := LOWER due to 'USE_AS_RECEIVER' //T8 <: T10 due to 'INITIALIZER' //T9 := LOWER due to 'USE_AS_RECEIVER' //T7 := UPPER due to 'COMPARE_WITH_NULL' //T10 := LOWER due to 'USE_AS_RECEIVER' //T7 := T0 due to 'ASSIGNMENT' //T8 := T1 due to 'ASSIGNMENT' //T11 := LOWER due to 'USE_AS_RECEIVER' //T3 <: T11 due to 'ASSIGNMENT' //T4 := LOWER due to 'USE_AS_RECEIVER' //T12 := UPPER due to 'COMPARE_WITH_NULL' //T5 <: T12 due to 'ASSIGNMENT' //T6 := LOWER due to 'USE_AS_RECEIVER'