fuhsnn / slimcc

C11 compiler with GNU extensions for x86-64 Linux, working towards C23
MIT License
34 stars 4 forks source link

Initializer list should ignore unnamed bit-fields #16

Closed fuhsnn closed 11 months ago

fuhsnn commented 11 months ago
#include <stdio.h>
int main (void) {
  struct {int :1, a, :1, b;} s = {1,2,3,4};
  printf("%d,%d\n", s.a, s.b); // expect 1,2, got 2,4
}