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

5 lines
52 B
C

int main() {
int a;
int* b;
0 ? a : b;
}