blob: 67cdc8825b8d1152979aed46698f5745e504a1a2 [file] [log] [blame]
/* APPLE LOCAL file mainline */
/* { dg-do compile } */
/* { dg-options "-fobjc-exceptions" } */
/* APPLE LOCAL radar 4894756 */
#include "../objc/execute/Object2.h"
int main (int argc, const char * argv[]) {
Object * pool = [Object new];
int a;
if ( 1 ) {
@try {
a = 1;
}
@catch (Object *e) {
a = 2;
}
@finally {
a = 3;
}
}
[pool free];
return 0;
}