YouCompleteMe/cpp/llvm/tools/clang/test/PCH/replaced-decl.m
Strahinja Val Markovic 1f51a89d39 Adding more llvm/clang files
These were ignored by git accidentally. We want ALL OF THEM since they all came
in the llvm/clang source distribution.
2012-07-05 17:55:45 -07:00

23 lines
376 B
Objective-C

// Without PCH
// RUN: %clang_cc1 -fsyntax-only -verify %s -include %s -include %s
// With PCH
// RUN: %clang_cc1 -fsyntax-only -verify %s -chain-include %s -chain-include %s
#ifndef HEADER1
#define HEADER1
@class I;
#elif !defined(HEADER2)
#define HEADER2
@interface I // expected-note {{previous}}
@end
#else
typedef int I; // expected-error {{redefinition}}
#endif