예:
fun check(a: Boolean? = null) { if (a ?: false) throw IllegalStateException() }
빠른 수정을 적용한 후:
fun check(a: Boolean? = null) { if (a == true) throw IllegalStateException() }