blob: 32dc82dba038cb6bd63b18d6b9134f28f4b6bfa7 [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 {
6 } @catch (NSException *x) { // expected-warning{{type specifier missing, defaults to 'int'}} expected-error{{@catch parameter is not an Objective-C class type}}
7 }
8}
9