brintos

brintos / llvm-project-archived public Read only

0
0
Text · 297 B · d323ca3 Raw
14 lines · plain
1// RUN: %clang_cc1 -fsyntax-only -verify %s2 3void f(void) {4  @throw @"Hello"; // expected-error {{cannot use '@throw' with Objective-C exceptions disabled}}5}6 7void g(void) {8  @try { // expected-error {{cannot use '@try' with Objective-C exceptions disabled}}9    f();10  } @finally {11    12  }13}14