seanbaxter / circle

The compiler is available for download. Get it!
http://www.circle-lang.org/
2.42k stars 74 forks source link

Segmentation fault on initialiser designator #200

Open iphydf opened 10 months ago

iphydf commented 10 months ago
typedef enum {} a;
typedef struct {
  a b
} c;
c d() { return {.e = 8}; }