1 // { dg-do compile { target c++14 } }
2 
f()3 constexpr auto f() { return (char)42; }
4 #define SA(X) static_assert ((X),#X)
5 SA (f() == 42);
6