Skip to main content
Journey Uncommon Logo
JourneyUncommon
easyKotlinnull safety and double bangSingle-choice MCQ

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"!! }