summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.law/operators14.C
blob: 22e125653299f2277056f2821e421b2fe96808e0 (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) {}

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