We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60db4a0 commit ee5d443Copy full SHA for ee5d443
1 file changed
test/const_read.c
@@ -9,6 +9,6 @@ int read_val(const int *x)
9
int call_read_val() {
10
int x = 67;
11
int y = read_val(&x);
12
- _assert(y == x);
+ _assert(y == x && x == 67);
13
return y;
14
}
0 commit comments