blob: 7256ecb0d012690f535896c24cc48d36a2ce781e [file] [log] [blame]
// PR c++/64931
// { dg-do compile { target c++14 } }
template<typename T>
struct S {
T data[32];
};
auto
foo (S<int> & x)
{
return x;
}