1 // PR c++/26291
2 // { dg-do compile }
3 
4 struct A
5 {
6     A& operator= (A,...);  // { dg-error "variable number of arguments" }
7     A operator+ (...);     // { dg-error "variable number of arguments" }
8     operator int(...);     // { dg-error "variable number of arguments" }
9     int operator() (...);
10 };
11 
12 A operator- (A,...);       // { dg-error "variable number of arguments" }
13