blob: 31df51a228c355c65f0ca8449977694908275c71 [file] [log] [blame]
// PR c++/87476
// { dg-do compile { target c++11 } }
template <int>
struct S {
void operator () () { constexpr unsigned char p[1] {}; }
};
void
foo ()
{
S<0>{} ();
}