• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Test this without pch.
2 // RUN: %clang_cc1 -include %s -verify -std=c++0x %s
3 
4 // Test with pch.
5 // RUN: %clang_cc1 -std=c++0x -emit-pch -o %t %s
6 // RUN: %clang_cc1 -include-pch %t -verify -std=c++0x %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
21