highlight unresolved method call even with unresoolved arguments

This commit is contained in:
Alexey Kudravtsev
2011-06-20 11:43:36 +04:00
parent d412246da5
commit 4d63800998
37 changed files with 116 additions and 91 deletions

View File

@@ -0,0 +1,16 @@
// multiple extend
import java.io.*;
class c1 {}
class c2 implements Serializable, Externalizable {
public void writeExternal(ObjectOutput out) throws IOException {
}
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException {
}
}
class a <error descr="Class cannot extend multiple classes">extends c1,c2</error> {
}