blob: e148221ea414ff4730c8c51a331044b6d0edfaa5 [file] [log] [blame]
import junit.framework.TestCase;
class Base extends TestCase {
public void setUp() {
super.setUp();
}
}
public class T extends Base {
private int i;
public void setUp() throws Exception {
super.setUp();
i = 9;
}
public void test() {
}
}