blob: e6aad6fb9b80cd13e160c3a61df684f6514e2d98 [file] [log] [blame]
/* APPLE LOCAL file 5938756 */
/* This code caused an ICE */
/* { dg-do compile } */
/* { dg-options "-gdwarf-2 -Os" } */
@class NSException;
struct empty {
};
__attribute__((objc_root_class)) @interface PC {
}
@end
@implementation PC
- (id) fn {
signed char isSet = 0;
struct empty sb;
if (isSet) {
@try { }
@catch (NSException *localException) { }
}
}
@end