1
0
mirror of https://github.com/cc65/cc65.git synced 2025-08-08 06:25:17 +00:00
Files
cc65/test/val/bug2520.c
Kugel Fuhr 175ec65af1 Fix #2520.
2024-09-14 21:12:19 +02:00

5 lines
60 B
C

#if (1 ? 2 : 0) != 2
#error
#endif
int main() { return 0; }