]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/PCH/cxx-static_assert.cpp
Vendor import of clang release_30 branch r142614:
[FreeBSD/FreeBSD.git] / test / PCH / cxx-static_assert.cpp
1 // Test this without pch.
2 // RUN: %clang_cc1 -include %s -verify -std=c++11 %s
3
4 // Test with pch.
5 // RUN: %clang_cc1 -std=c++11 -emit-pch -o %t %s
6 // RUN: %clang_cc1 -include-pch %t -verify -std=c++11 %s 
7
8 #ifndef HEADER
9 #define HEADER
10
11 template<int N> struct T {
12     static_assert(N == 2, "N is not 2!"); // expected-error {{static_assert failed "N is not 2!"}}
13 };
14
15 #else
16
17 T<1> t1; // expected-note {{in instantiation of template class 'T<1>' requested here}}
18 T<2> t2;
19
20 #endif