blob: d47f51a84ebf33ed72a374d0fa186a628b2817ac [file] [log] [blame]
Anders Carlssone9b801f2011-02-22 01:52:06 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Anders Carlssonda4b7cf2011-02-19 23:53:54 +00002
3void f() {
4 @throw @"Hello"; // expected-error {{cannot use '@throw' with Objective-C exceptions disabled}}
5}
6
7void g() {
8 @try { // expected-error {{cannot use '@try' with Objective-C exceptions disabled}}
9 f();
10 } @finally {
11
12 }
13}