blob: 4c3227a0e1fdd3a7a2781cb7a9f79b9c96e3bc3f [file] [log] [blame]
// { dg-do compile { target c++1y } }
template <class T>
constexpr auto f(T t) { return t+1; }
#define SA(X) static_assert((X),#X)
SA(f(1)==2);