ReplaceToWithInfixFormInspection: don't report when call expression has type typeArguments

#KT-36508 Fixed
This commit is contained in:
Toshiaki Kameyama
2020-02-27 10:47:05 +09:00
committed by Yan Zhulanow
parent f7a69d4aa7
commit 8d3e41ae60
3 changed files with 16 additions and 1 deletions
@@ -11450,6 +11450,11 @@ public class LocalInspectionTestGenerated extends AbstractLocalInspectionTest {
public void testNonPair() throws Exception {
runTest("idea/testData/inspectionsLocal/replaceToWithInfixForm/nonPair.kt");
}
@TestMetadata("typeArguments.kt")
public void testTypeArguments() throws Exception {
runTest("idea/testData/inspectionsLocal/replaceToWithInfixForm/typeArguments.kt");
}
}
@TestMetadata("idea/testData/inspectionsLocal/replaceWithEnumMap")