例:
fun test(): Boolean { return 2.compareTo(1) > 0 // 置換可能な 'compareTo()' }
クイックフィックス適用後:
fun test(): Boolean { return 2 > 1 }