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