aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/empty-assign.c
blob: d1c3884f71e8a34bcf92e8fec82d610086b70d68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
static int foo(int a)
{
	a = ;			// KO
	return a;
}

/*
 * check-name: empty-assign
 *
 * check-error-start
empty-assign.c:3:11: error: expression expected before ';'
 * check-error-end
 */