]> gcc.gnu.org Git - gcc.git/blob - gcc/testsuite/g++.dg/cpp0x/noexcept30.C
PR c++/92590 - wrong handling of inherited default ctor.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / noexcept30.C
1 // PR c++/69300
2 // { dg-do compile { target c++11 } }
3 // { dg-options "-fdelete-null-pointer-checks" }
4
5 template<typename A>
6 struct F {
7 template<typename B>
8 void f() noexcept(&F::template f<B>) {} // { dg-error "exception specification|convert" }
9 };
10
11 int main () {
12 F<void>().f<int>();
13 }
This page took 0.038135 seconds and 5 git commands to generate.