1 // PR c++/87476
2 // { dg-do compile { target c++11 } }
3 
4 template <int>
5 struct S {
operatorS6   void operator () () { constexpr unsigned char p[1] {}; }
7 };
8 
9 void
foo()10 foo ()
11 {
12   S<0>{} ();
13 }
14