aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/constexpr-ice6.C
blob: 30e0a643bcb135c4f33d4f8a501df4683ca28276 (plain)
1
2
3
4
5
6
7
8
9
10
11
// PR c++/51327
// { dg-do compile { target c++11 } }

struct A
{
  A(int);
};

struct B : A {};                   // { dg-error "no matching" }

constexpr int foo(B) { return 0; } // { dg-error "invalid type" }