blob: bf95b2443c79e83a6cc08dd1eb8fa9d9990051cf (
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-message "" }
constexpr int foo(B) { return 0; } // { dg-error "invalid type" }
|