1 // Test this without pch.
2 // RUN: %clang_cc1 -include %s -verify -std=c++11 %s
5 // RUN: %clang_cc1 -std=c++11 -emit-pch -o %t %s
6 // RUN: %clang_cc1 -include-pch %t -verify -std=c++11 %s
8 // RUN: %clang_cc1 -std=c++11 -emit-pch -fpch-instantiate-templates -o %t %s
9 // RUN: %clang_cc1 -include-pch %t -verify -std=c++11 %s
14 template<int N
> struct T
{
15 static_assert(N
== 2, "N is not 2!");
20 // expected-error@15 {{static assertion failed due to requirement '1 == 2': N is not 2!}}
21 T
<1> t1
; // expected-note {{in instantiation of template class 'T<1>' requested here}}