예:
fun test(): Boolean { return 2.compareTo(1) > 0 // 바꿀 수 있는 'compareTo()' }
빠른 수정 적용 후:
fun test(): Boolean { return 2 > 1 }