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>("");}
}