testdata for IDEA-67829

This commit is contained in:
anna
2013-05-02 14:53:00 +02:00
parent 3d8ba6e745
commit fb7363e172
2 changed files with 5 additions and 0 deletions
@@ -0,0 +1,4 @@
class A{
void foo(String s){}
static void foo(Object s){<error descr="Non-static method 'foo(java.lang.String)' cannot be referenced from a static context">foo</error>("");}
}
@@ -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); }