blob: 78419a247557c618d00c30ac3fdcfd44bb47ee57 [file] [log] [blame]
Anders Carlssonda4b7cf2011-02-19 23:53:54 +00001// RUN: %clang_cc1 -fno-objc-exceptions -fsyntax-only -verify %s
2
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}