Add quotes for constexpr keyword.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1y / constexpr-shift1.C
blobd63c954f42f7c3ce2115a8677dcdda909bd1eb00
1 // { dg-do compile { target c++14 } }
3 constexpr int p = 1;
4 constexpr __PTRDIFF_TYPE__ bar (int a)
6   return ((__PTRDIFF_TYPE__) &p) << a; // { dg-error "is not a constant expression" }
8 constexpr __PTRDIFF_TYPE__ r = bar (2); // { dg-message "in .constexpr. expansion of" }
9 constexpr __PTRDIFF_TYPE__ s = bar (0); // { dg-error "conversion from pointer" }