[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / SemaCXX / exception-spec-no-exceptions.cpp
blob45d05f36c819f40f1114047af4ffa1dcadbe79c7
1 // RUN: %clang_cc1 %std_cxx98-14 -fsyntax-only -verify -fexceptions -fobjc-exceptions %s
2 // expected-no-diagnostics
4 // Note that we're specifically excluding -fcxx-exceptions in the command line above.
6 // That this should work even with -fobjc-exceptions is PR9358
8 // PR7243: redeclarations
9 namespace test0 {
10 void foo() throw(int);
11 void foo() throw();
14 // Overrides.
15 namespace test1 {
16 struct A {
17 virtual void foo() throw();
20 struct B : A {
21 virtual void foo() throw(int);
25 // Calls from less permissive contexts. We don't actually do this
26 // check, but if we did it should also be disabled under
27 // -fno-exceptions.
28 namespace test2 {
29 void foo() throw(int);
30 void bar() throw() {
31 foo();