blob: 2558922852c66d20ce3c01a5d9a1cf879fc3fd0d [file] [log] [blame]
import java.io.*;
public class Subject {
private int myInt;
public void withClass(Object <caret>o) {
myInt += o.hashCode();
}
}
class User {
private void oper() throws IOException {
Subject subj = new Subject();
subj.withClass(new ThirdParty(false));
}
}
class ThirdParty {
public ThirdParty() {
}
public ThirdParty(boolean b) throws IOException {
if (b) {
throw new IOException();
}
}
}