summaryrefslogtreecommitdiffstats
path: root/test/PCH/replaced-decl.m
blob: 5636a5746161717b570df8c6ed7d74fb8baf000f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// 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
@end

#else

typedef int I; // expected-error {{redefinition}}
               // expected-note@15 {{previous}}

#endif