Allow resolving headers from a PCH even after headers+PCH were moved to another path.
[clang.git] / test / Sema / typedef-variable-type.c
blobb805b1e0578f24be7dcb79f313f9a34b7e085c36
1 // RUN: %clang_cc1 %s -verify -fsyntax-only -pedantic -Wno-typedef-redefinition
3 // Make sure we accept a single typedef
4 typedef int (*a)[!.0]; // expected-warning{{size of static array must be an integer constant expression}}
6 // And make sure we accept identical redefinitions in system headers
7 // (The test uses -Wno-typedef-redefinition to simulate this.)
8 typedef int (*a)[!.0]; // expected-warning{{size of static array must be an integer constant expression}}