RVBTCC/test/error/branch_mismatch.c

5 lines
52 B
C
Raw Normal View History

2024-12-24 07:00:51 +00:00
int main() {
int a;
int* b;
0 ? a : b;
}