68_macro_concat.c -> 68_macro_param_list_err_1.c
69_macro_concat.c -> 69_macro_param_list_err_2.c
and Remove spaces
master
jiang 2014-07-01 23:54:49 +08:00
parent b31e80a43a
commit 89000c18dc
7 changed files with 6 additions and 6 deletions

View File

@ -1 +0,0 @@
68_macro_concat.c:2: error: '(' may not appear in parameter list

View File

@ -3,7 +3,7 @@
int main(void)
{
int c = 0xa;
int c = 0xa;
printf("hex: %c\n", hexCh(c));
return 0;
}

View File

@ -0,0 +1 @@
68_macro_param_list_err_1.c:2: error: '(' may not appear in parameter list

View File

@ -1 +0,0 @@
69_macro_concat.c:2: error: '/' may not appear in parameter list

View File

@ -3,7 +3,7 @@
int main(void)
{
int c = 0xa;
int c = 0xa;
printf("hex: %c\n", hexCh(c));
return 0;
}

View File

@ -0,0 +1 @@
69_macro_param_list_err_2.c:2: error: '/' may not appear in parameter list

View File

@ -83,8 +83,8 @@ TESTS = \
65_macro_concat_start.test \
66_macro_concat_end.test \
67_macro_concat.test \
68_macro_concat.test \
69_macro_concat.test
68_macro_param_list_err_1.test \
69_macro_param_list_err_2.test
# 34_array_assignment.test -- array assignment is not in C standard