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