1 // { dg-do compile { target c++11 } }
2 
3 template <int a>
f(const char (&)[a])4 void f (const char (&)[a]) { }
f(int)5 void f (int) { }
6 template <class...a>
7 void
g()8 g ()
9 {
10   f ({2u});
11 }
12