diff --git a/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/advHighlighting/IDEA67829.java b/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/advHighlighting/IDEA67829.java new file mode 100644 index 000000000000..ba40610e98ad --- /dev/null +++ b/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/advHighlighting/IDEA67829.java @@ -0,0 +1,4 @@ +class A{ + void foo(String s){} + static void foo(Object s){foo("");} +} \ No newline at end of file diff --git a/java/java-tests/testSrc/com/intellij/codeInsight/daemon/LightAdvHighlightingTest.java b/java/java-tests/testSrc/com/intellij/codeInsight/daemon/LightAdvHighlightingTest.java index ed66f5f4676b..2fbe4568227b 100644 --- a/java/java-tests/testSrc/com/intellij/codeInsight/daemon/LightAdvHighlightingTest.java +++ b/java/java-tests/testSrc/com/intellij/codeInsight/daemon/LightAdvHighlightingTest.java @@ -188,6 +188,7 @@ public class LightAdvHighlightingTest extends LightDaemonAnalyzerTestCase { public void testIDEADEV25784() throws Exception { doTest(false, false); } public void testIDEADEV13249() throws Exception { doTest(false, false); } public void testIDEADEV11919() throws Exception { doTest(false, false); } + public void testIDEA67829() throws Exception { doTest(false, false); } public void testMethodCannotBeApplied() throws Exception { doTest(false, false); } public void testDefaultPackageClassInStaticImport() throws Exception { doTest(false, false); }