| | | | --- | --- | | Bugzilla Link | [3344](https://llvm.org/bz3344) | | Resolution | FIXED | | Resolved on | Aug 13, 2010 22:15 | | Version | unspecified | | OS | Linux | | Reporter | LLVM Bugzilla Contributor | | CC | @DougGregor,@efriedma-quic | ## Extended Description $ cat bug1.c struct S { int i; }; struct S s = { {{ 1 }} }; $ gcc -w -c bug1.c $ clang -w bug1.c bug1.c:8:3: error: too many braces around scalar initializer {{ 1 }} ^~~~~~~ 1 diagnostic generated. $