Argyrios Kyrtzidis | 0d39689 | 2010-07-22 17:28:12 +0000 | [diff] [blame] | 1 | // Test this without pch. |
2 | // RUN: %clang_cc1 -include %S/cxx-static_assert.h -verify -std=c++0x %s | ||||
3 | |||||
4 | // Test with pch. | ||||
5 | // RUN: %clang_cc1 -x c++-header -std=c++0x -emit-pch -o %t %S/cxx-static_assert.h | ||||
6 | // RUN: %clang_cc1 -include-pch %t -verify -std=c++0x %s | ||||
7 | |||||
8 | // expected-error {{static_assert failed "N is not 2!"}} | ||||
9 | |||||
10 | T<1> t1; // expected-note {{in instantiation of template class 'T<1>' requested here}} | ||||
11 | T<2> t2; |