aboutsummaryrefslogtreecommitdiff
path: root/test/PCH/cxx-static_assert.h
blob: ba41ab8feddb5e899f54c9ab42224ab7943ef3c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
// Header for PCH test cxx-static_assert.cpp





template<int N> struct T {
    static_assert(N == 2, "N is not 2!");
};