例:
fun test(my: My?) { if (my != null && my.foo() != null) {} }
クイックフィックス適用後:
fun test(my: My?) { if (my?.foo() != null) {} }