blob: 6d2038082acf9f3f8ecb34dd5b5b34709c0d6f21 [file] [log] [blame]
package test1;
import java.io.IOException;
class Howard4 implements HowardHome {
int n = 0;
public Object create() throws IOException {
if (n == 1)
throw new IOException();
else
return "howard4";
}
}
interface HowardHome {
Object create() throws IOException;
}
class Howard2 {
Object lookup(String n) { return new Howard4(); }
}
public class Howard extends Howard2 {
@SuppressWarnings("unused")
private Object _remote;
public int run() {
return 0;
}
}