In the latest episode of "Deserializing bugs caused by accessors" the series reached...
[clang.git] / test / PCH / cxx-static_assert.h
blobba41ab8feddb5e899f54c9ab42224ab7943ef3c8
1 // Header for PCH test cxx-static_assert.cpp
7 template<int N> struct T {
8 static_assert(N == 2, "N is not 2!");
9 };