blob: 164b4bafe0726db2f61c2f469791fbeb44e00385 [file] [log] [blame]
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00001// Test this without pch.
2// RUN: %clang_cc1 -include %S/cxx-typeid.h -fsyntax-only -verify %s
3
4// RUN: %clang_cc1 -x c++-header -emit-pch -o %t %S/cxx-typeid.h
5// RUN: %clang_cc1 -include-pch %t -fsyntax-only -verify %s
6
7void f() {
8 (void)typeid(int);
9}