blob: 83011f2f0ab8e75084da77b8b4ab830a048285a9 [file] [log] [blame]
// PR c++/28879
// { dg-options "" }
struct A
{
int i;
A(): i(1) {}
};
template<int> void foo()
{
int x[A().i];
}
void f()
{
foo<1>();
}