blob: 35feccedc4be32a2d086a543ba12ef3947ed4acf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#include <stdint.h>
#include <inttypes.h>
#include <stdio.h>
char *a = "a" "b" "c" D;
static int a, b, c;
a = b = c = 0;
static int d = 0, e = 0, f = 0;
int main(void) {
printf("String" PRIu64 "\n", (uint64_t)0);
printf("String" AND_ERROR_NODE "and string");
fflush(stdout);
a = 0; b = 0; c = 0;
int x = 0; int y = 0; int z = 0;
foo(1, 2);
x++;
a = b
= c
= d;
}
|