From fb7363e172efdff2625f7691cd08e2e40c06c3cf Mon Sep 17 00:00:00 2001 From: anna Date: Thu, 2 May 2013 12:35:42 +0200 Subject: [PATCH] testdata for IDEA-67829 --- .../daemonCodeAnalyzer/advHighlighting/IDEA67829.java | 4 ++++ .../intellij/codeInsight/daemon/LightAdvHighlightingTest.java | 1 + 2 files changed, 5 insertions(+) create mode 100644 java/java-tests/testData/codeInsight/daemonCodeAnalyzer/advHighlighting/IDEA67829.java 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); }