blob: 0d623dcc1ce057ffea191c2f2fb67ff6a97d9b17 [file] [log] [blame]
Steve Naroff8c565152008-12-05 17:03:39 +00001// RUN: clang -rewrite-objc -verify %s -o -
2
3int main() {
4 @try {
Douglas Gregora316e7b2009-02-14 00:32:47 +00005 printf("executing try"); // expected-warning{{implicitly declaring C library function 'printf' with type 'int (char const *, ...)'}} \
6 // expected-note{{please include the header <stdio.h> or explicitly provide a declaration for 'printf'}}
Steve Naroff8c565152008-12-05 17:03:39 +00007 return(0); // expected-warning{{rewriter doesn't support user-specified control flow semantics for @try/@finally (code may not execute properly)}}
8 } @finally {
9 printf("executing finally");
10 }
11 while (1) {
12 @try {
13 printf("executing try");
14 break; // expected-warning{{rewriter doesn't support user-specified control flow semantics for @try/@finally (code may not execute properly)}}
15 } @finally {
16 printf("executing finally");
17 }
18 printf("executing after finally block");
19 }
20 @try {
21 printf("executing try");
22 } @finally {
23 printf("executing finally");
24 }
25 return 0;
26}
27