3d1dcd9bfd
http://llvm.org/svn/llvm-project/cfe/branches/release_28@114020 Approved by: rpaulo (mentor)
10 lines
122 B
C++
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!");
|
|
};
|