aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr64778.c
blob: 71a2607e79c5819d53af8d352ecc1e9ee50e7956 (plain)
1
2
3
4
5
6
7
8
9
10
/* PR c/64778 */
/* { dg-do compile } */

int
foo (int p)
{
  int a;
  a ^= foo (,);	/* { dg-error "expected expression before|too many arguments" } */
  return a;
}