Add __builtion_unreachable to vector::size(), vector::capacity()
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1y / auto-fn4.C
blobc2e1893523c378907788ca4f45f1fccde6bce4ad
1 // { dg-do compile { target c++14 } }
3 template <class T>
4 constexpr auto f(T t) { return t+1; }
6 #define SA(X) static_assert((X),#X)
7 SA(f(1)==2);