blob: e0022b299030d04cfa91544005f219223a980942 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* A very simple @try-@catch example. */
/* { dg-do compile } */
/* { dg-options "-fobjc-exceptions" } */
int foo(void) {
@try {
return 2;
}
@catch (id foo) {
return 1;
}
return 0;
}
|