Which of these uses of !! actually does something useful (rather than being redundant)?fun f(a: String, b: String?, c: Int) { val w = a!! val x = b!! val y = c!! val z = "hi"!! }