blob: 32eef4171f7800e38f8363ce88df0c05865de337 [file] [log] [blame]
// PR c++/121583
// { dg-do compile { target c++14 } }
// { dg-options "" }
auto
foo ()
{
template for (int i : { 0 }) // { dg-warning "'template for' only available with" "" { target c++23_down } }
return i;
}
auto
bar ()
{
template for (auto i : { 0 }) // { dg-warning "'template for' only available with" "" { target c++23_down } }
return i;
}