mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 07:32:44 +00:00
94b9bcd034
Fixes #11595
11 lines
245 B
C
11 lines
245 B
C
#include <string.h>
|
|
|
|
int check(void) {
|
|
if (FOO != 42) return 1;
|
|
if (strcmp(BAR, "BAR")) return 2;
|
|
if (strcmp(BAZ, "\"BAZ\"")) return 3;
|
|
if (strcmp(QUX, "QUX")) return 4;
|
|
if (strcmp(QUUX, "QU\"UX")) return 5;
|
|
return 0;
|
|
}
|