blob: 473c0f1b445299a5e988c37af9450af048541502 [file] [log] [blame]
abstract class Foo {
void foo1() {
}
abstract void foo2() throws Exception;
void foo3() {
}
}