add test data
This commit is contained in:
10
test/testcases/lvalue2.c
Normal file
10
test/testcases/lvalue2.c
Normal file
@ -0,0 +1,10 @@
|
||||
#include "io.inc"
|
||||
int a[4];
|
||||
int main() {
|
||||
int b[4];
|
||||
b[2] = 2;
|
||||
int *p;
|
||||
p = b;
|
||||
printInt(p[2]);
|
||||
return judgeResult % Mod; // 175
|
||||
}
|
Reference in New Issue
Block a user