tyfkda / xcc

Standalone C compiler/assembler/linker/libc for x86-64/aarch64/riscv64/wasm
https://tyfkda.github.io/xcc/
MIT License
197 stars 14 forks source link

Struct initializer with multiple dot #121

Closed tyfkda closed 9 months ago

tyfkda commented 1 year ago
struct S {
  struct {
    int x;
    struct {
      int y;
    } b;
  } a;
} s = {.a.b.y = 1};