In C23 mode allow class specifiers as the type-ids for object literals. ```c int f() { return ((struct { int a; }) {.a = 0}).a; } ```