freebsd-dev/test/PCH/cxx-static_assert.h

10 lines
122 B
C++

// Header for PCH test cxx-static_assert.cpp
template<int N> struct T {
static_assert(N == 2, "N is not 2!");
};