1 // { dg-do compile { target c++11 } }
2 
3 struct A
4 {
5   A(int, ...);			// { dg-message "declared here" }
6 };
7 
8 struct B: A
9 {
10   using A::A;			// { dg-warning "ellipsis" }
11 };
12 
13 B b1(42);
14 B b2(42, 1.0);			// { dg-error "no match" }
15