blob: 1d096f5e71fd873de67d78319ec31cbba6cc6a18 [file] [log] [blame]
Steve Naroff65a00892009-04-07 22:56:58 +00001// RUN: clang-cc %s -verify -fsyntax-only
2
3// Note: NSException is not declared.
4void f0(id x) {
5 @try {
Chris Lattnere1b41742009-04-12 23:27:53 +00006 } @catch (NSException *x) { // expected-error{{unknown type name 'NSException'}}
Steve Naroff65a00892009-04-07 22:56:58 +00007 }
8}
9