2 // { dg-do compile { target c++11 } }
4 #define SA(X) static_assert((X),#X)
6 constexpr char s[] = "abc";
9 cmp (char const *a, char const *b)
17 return cmp (s, s + 1);
23 return cmp (s + 1, s + 1);
26 constexpr auto c1 = fn1 (&s[0]);
27 constexpr auto c2 = fn2 (&s[0]);