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