Skip to content

Commit 041c7cf

Browse files
fix error numbers
1 parent 50c02c9 commit 041c7cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/small1/c11-generic.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ int main() {
2020
if(type3(v_int) != 1) { E(6); }
2121
if(type3(v_intconst) != 1) { E(7); }
2222

23-
if(type3((const int)v_int) != 1) { E(6); }
24-
if(type3((const int)v_intconst) != 1) { E(7); }
23+
if(type3((const int)v_int) != 1) { E(8); }
24+
if(type3((const int)v_intconst) != 1) { E(9); }
2525

2626
SUCCESS;
2727
}

0 commit comments

Comments
 (0)