blob: 9892ccde5be9c6beef1256fe9c2060919b7641fb [file] [log] [blame]
// { dg-do compile { target c++11 } }
template <int a>
void f (const char (&)[a]) { }
void f (int) { }
template <class...a>
void
g ()
{
f ({2u});
}