RVBTCC/test/error/both_pointers.c
2024-12-24 16:16:03 +08:00

5 lines
49 B
C

int main() {
int* a;
int* b;
a + b;
}