示例:
fun check(a: Boolean? == null) { if (a ?: false) throw IllegalStateException() }
在应用快速修复后:
fun check(a: Boolean? == null) { if (a == true) throw IllegalStateException() }