Resolve target: val x: kotlin.Any? ---------------------------------------------- fun foo() { MainLoop@ for (i in 1..10) { val x = take() if (x == null) { while (true) { break@MainLoop } } x.hashCode() } } fun take(): Any? = null