https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87152
ensadc at mailnesia dot com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |ensadc at mailnesia dot com
--- Comment #1 from ensadc at mailnesia dot com ---
Reduced:
template<bool ... bits>
int int_from_bits()
{
int a[1] = {};
for (int index = 0; int _ : a)
{
index;
}
return 0;
}
int j = int_from_bits<>();
