aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.brendan/operators1.C
blob: b1499bf1e959a10a55cfc44cc5a8f4016f12a620 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// { dg-do assemble  }
// GROUPS passed operators
struct A {
	int x;
};

int operator()(A x,float y) { // MUST be a member function// { dg-error "" } .*
	return 1;
}

int main() {
	A x;
	x(1.0); // { dg-error "" } no match for call
}