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

5 lines
50 B
C

int main() {
int* a;
char* b;
a - b;
}