blob: 2a4525cbd6c1929c99f69d8c9d5e22856c668023 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Test that -Wnoexcept works with templates
// { dg-options "-std=c++0x -Wnoexcept" }
template <class T>
T f (T t) { return t; } // { dg-warning "does not throw" }
#define SA(X) static_assert(X, #X)
SA (!noexcept(f(1))); // { dg-warning "noexcept" }
int main()
{
f(1); // Use f(int) so it gets instantiated
}
|