1 struct S1
2 {
3     int a, b, c;
4 
5     static immutable S1 C1 = { 1 2 3 }; // no commas here, compiles
6     static immutable S1 C2 = { 1, 2, 3 }; // compiles as well
7 }
8