blob: 3156749cff9c08740a89c1df611d057b7faf52ea (
plain)
1
2
3
4
5
6
7
8
9
10
|
// { dg-do assemble }
// GROUPS passed initialization
class foo {
public:
operator ++ (); // { dg-error "" } no type or storage class
operator ++ (int); // { dg-error "" } no type or storage class
operator ++ (char); // illegal// { dg-error "" } .*
operator ++ (short); // illegal// { dg-error "" } .*
operator ++ (long); // illegal// { dg-error "" } .*
};
|