Wrap with let: apply to unsafe qualified expression

#KT-18125 Fixed
This commit is contained in:
Toshiaki Kameyama
2020-07-08 09:50:03 +09:00
committed by Vladimir Dolzhenko
parent 18fbf5729d
commit 6db0785615
7 changed files with 83 additions and 12 deletions
@@ -15529,6 +15529,21 @@ public class QuickFixTestGenerated extends AbstractQuickFixTest {
runTest("idea/testData/quickfix/wrapWithSafeLetCall/objectQualifier.kt");
}
@TestMetadata("unsafe.kt")
public void testUnsafe() throws Exception {
runTest("idea/testData/quickfix/wrapWithSafeLetCall/unsafe.kt");
}
@TestMetadata("unsafe2.kt")
public void testUnsafe2() throws Exception {
runTest("idea/testData/quickfix/wrapWithSafeLetCall/unsafe2.kt");
}
@TestMetadata("unsafeForNullableParameter.kt")
public void testUnsafeForNullableParameter() throws Exception {
runTest("idea/testData/quickfix/wrapWithSafeLetCall/unsafeForNullableParameter.kt");
}
@TestMetadata("unstableValue.kt")
public void testUnstableValue() throws Exception {
runTest("idea/testData/quickfix/wrapWithSafeLetCall/unstableValue.kt");