mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 02:38:59 +07:00
highlight unresolved method call even with unresoolved arguments
This commit is contained in:
@@ -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> {
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user