1 // RUN: %clang_cc1 -fcxx-exceptions -fexceptions -fsyntax-only -verify %s
7 (1 ? throw 1 : throw 2);
13 __extension__
throw 1; // expected-error {{expected expression}}
14 (void)throw; // expected-error {{expected expression}}
17 void f() throw(static); // expected-error {{expected a type}} expected-error {{does not allow storage class}}