aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.law/operators14.C
blob: 191266fe4a287c8a44e79457fad5e7ef2f931740 (plain)
1
2
3
4
5
6
7
8
9
10
// Build don't link: 
// GROUPS passed operators
void foo (int * a, int * b, int * c) {}

main() {
	int a,b,c;
	foo (&a, &b, &c);
	(a = b) = c;
}