"Redundant SAM constructor": Fix highlighting range #KT-27034 Fixed

This commit is contained in:
Toshiaki Kameyama
2018-09-25 11:14:09 +09:00
committed by Mikhail Glukhikh
parent 487f500f85
commit affa881421
7 changed files with 42 additions and 1 deletions
@@ -4221,6 +4221,16 @@ public class LocalInspectionTestGenerated extends AbstractLocalInspectionTest {
public void testNestedInterface() throws Exception {
runTest("idea/testData/inspectionsLocal/redundantSamConstructor/nestedInterface.kt");
}
@TestMetadata("simple.kt")
public void testSimple() throws Exception {
runTest("idea/testData/inspectionsLocal/redundantSamConstructor/simple.kt");
}
@TestMetadata("simple2.kt")
public void testSimple2() throws Exception {
runTest("idea/testData/inspectionsLocal/redundantSamConstructor/simple2.kt");
}
}
@TestMetadata("idea/testData/inspectionsLocal/redundantSemicolon")