blob: 666b2ec14aea858dd35888b4d94239e6619bb8d6 [file] [log] [blame]
// 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> {
}