Fortran: Fix PR 47485.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / noexcept80.C
blob3e90af747e2ba99fc03d004724126b2cb024c5a3
1 // PR c++/110106
2 // { dg-do compile { target c++11 } }
4 template<int> struct S
6 };
8 struct G {
9   G(S<0>);
12 void y(S<0> s) noexcept(noexcept(G{s}));