fun foo(t: T) { t!! } fun box(): String { try { foo(null) } catch (e: Exception) { return "OK" } return "Fail" }