// !LANGUAGE: -SoundSmartcastFromLoopConditionForLoopAssignedVariables fun foo() { var x: String? = "123" while (x!!.length < 42) { x = null break } x.length // 'x' is unsoundly smartcasted here } fun bar() { var x: List? = ArrayList(1) for (i in x!!) { x = null break } x.size // 'x' is unsoundly smartcasted here }