blob: ba41ab8feddb5e899f54c9ab42224ab7943ef3c8 [file] [log] [blame]
Argyrios Kyrtzidis0d396892010-07-22 17:28:12 +00001// Header for PCH test cxx-static_assert.cpp
2
3
4
5
6
7template<int N> struct T {
8 static_assert(N == 2, "N is not 2!");
9};