示例:
fun test(): Boolean { return 2.compareTo(1) > 0 // replaceable 'compareTo()' }
在应用快速修复后:
fun test(): Boolean { return 2 > 1 }