blob: 5b8b67549b33ee96a3f52ada393315eea0cf6e2e [file] [log] [blame]
@interface Exception
@end
@interface OtherException
@end
void f() {
@try {
Exception *e;
@throw e;
}
@catch (Exception *varname) {
}
@finally {
}
@try {
}
@catch (Exception *varname1) {
@throw;
}
@catch (OtherException *varname2) {
}
@try {
}
@finally {
}
}