forked from OSchip/llvm-project
19 lines
180 B
Mathematica
19 lines
180 B
Mathematica
|
// RUN: clang -rewrite-test %s | clang
|
||
|
|
||
|
@interface foo @end
|
||
|
@interface GARF @end
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
|
||
|
@try {
|
||
|
MYTRY();
|
||
|
}
|
||
|
|
||
|
@catch (foo* localException) {
|
||
|
MYCATCH();
|
||
|
@throw;
|
||
|
}
|
||
|
}
|
||
|
|