예:
fun test(my: My?) { if (my != null && my.foo() != null) {} }
빠른 수정 적용 후:
fun test(my: My?) { if (my?.foo() != null) {} }