summaryrefslogtreecommitdiff
path: root/test/CXX/except/except.spec/p11.cpp
blob: 196f84c557ea5e594107682b6c264903b62d2804 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: %clang_cc1 -std=c++11 -fexceptions -fcxx-exceptions -fsyntax-only -verify %s

// This is the "let the user shoot themselves in the foot" clause.
void f() noexcept { // expected-note {{non-throwing function declare here}}
  throw 0; // expected-warning {{has a non-throwing exception specification but}} 
}
void g() throw() { // expected-note {{non-throwing function declare here}}
  throw 0; // expected-warning {{has a non-throwing exception specification but}} 
}
void h() throw(int) {
  throw 0.0; // no-error
}