OSDN Git Service

PR target/26445
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / other / error21.C
1 // PR c++/34273
2
3 struct A {};
4
5 struct B : A
6 {
7   B() : A()... {} // { dg-error "cannot expand" }
8 };