seanbaxter / circle

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

Segmentation fault on initialiser designator #200

Open iphydf opened 8 months ago

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