DEBSOURCES
Skip Quicknav
sources / chibicc / 1.0.23.2-2 / test / issue47.c
123456789
#include "test.h" // a.c struct S { int n; }; int main(void) { printf("%d\n", (struct S){1}.n); ASSERT(1, (struct S){1}.n); return 0; }