blob: b5d82fe345e098b5d91e1347a9411b21dcebc184 [file] [log] [blame]
package test0445;
import java.io.IOException;
public class A {
public void goo() throws IOException {
}
public void foo() {
goo();
}
}