PR lto/84212 - -Wno-* does not disable warnings from -flto link stage
[official-gcc.git] / gcc / testsuite / g++.dg / tc1 / dr188.C
blob3a10fa476263ad9dbb03687cafa830d71e5497d8
1 // { dg-do compile }
2 // Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
3 // DR188: Comma operator and rvalue conversion
5 template <bool> struct StaticAssert;
6 template <> struct StaticAssert<true> {};
8 char arr[100];
9 StaticAssert<(sizeof(0,arr) == 100)> check;