blob: 34409218ecd4b4e469e55a124559d81b1712d77f [file] [log] [blame]
Argyrios Kyrtzidis0d396892010-07-22 17:28:12 +00001// 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
10T<1> t1; // expected-note {{in instantiation of template class 'T<1>' requested here}}
11T<2> t2;