2011-02-22 04:52:06 +03:00
|
|
|
// RUN: %clang_cc1 -rewrite-objc -fobjc-exceptions -verify %s -o -
|
2008-12-05 20:03:39 +03:00
|
|
|
|
|
|
|
int main() {
|
|
|
|
@try {
|
2010-09-05 04:04:01 +04:00
|
|
|
printf("executing try"); // expected-warning{{implicitly declaring C library function 'printf' with type 'int (const char *, ...)'}} \
|
2009-02-14 03:32:47 +03:00
|
|
|
// expected-note{{please include the header <stdio.h> or explicitly provide a declaration for 'printf'}}
|
2008-12-05 20:03:39 +03:00
|
|
|
return(0); // expected-warning{{rewriter doesn't support user-specified control flow semantics for @try/@finally (code may not execute properly)}}
|
|
|
|
} @finally {
|
|
|
|
printf("executing finally");
|
|
|
|
}
|
|
|
|
while (1) {
|
|
|
|
@try {
|
|
|
|
printf("executing try");
|
2009-12-06 00:43:12 +03:00
|
|
|
break;
|
2008-12-05 20:03:39 +03:00
|
|
|
} @finally {
|
|
|
|
printf("executing finally");
|
|
|
|
}
|
|
|
|
printf("executing after finally block");
|
|
|
|
}
|
|
|
|
@try {
|
|
|
|
printf("executing try");
|
|
|
|
} @finally {
|
|
|
|
printf("executing finally");
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-12-06 00:43:12 +03:00
|
|
|
void test_sync_with_implicit_finally() {
|
|
|
|
id foo;
|
|
|
|
@synchronized (foo) {
|
|
|
|
return; // The rewriter knows how to generate code for implicit finally
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void test2_try_with_implicit_finally() {
|
|
|
|
@try {
|
|
|
|
return; // The rewriter knows how to generate code for implicit finally
|
|
|
|
} @catch (id e) {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|