llvm-project/clang/test/SemaObjC/stmts.m

10 lines
196 B
Mathematica
Raw Normal View History

// RUN: clang-cc %s -verify -fsyntax-only
// Note: NSException is not declared.
void f0(id x) {
@try {
2009-04-13 07:27:53 +08:00
} @catch (NSException *x) { // expected-error{{unknown type name 'NSException'}}
}
}