fun foo() = throw Exception() fun bar() = null!! fun baz() = bar() fun gav(): Any = null!! val x = null!! val y: Nothing = throw Exception() fun check() { // Error: KT-10449 fun local() = bar() // Unreachable / unused, but not implicit Nothing val x = null!! }