1static int foo(int a)
2{
3	a = ;			// KO
4	return a;
5}
6
7/*
8 * check-name: empty-assign
9 *
10 * check-error-start
11empty-assign.c:3:11: error: expression expected before ';'
12 * check-error-end
13 */
14