// WITH_RUNTIME fun test(s: String?) { if (s != null) { println(1) requireNotNull(s) { "" } println(2) } }