summaryrefslogtreecommitdiffstats
path: root/clang/test/Modules/Inputs/redecl-merge-right.h
blob: 26eed69b91b2880c000b14eb16f8238800c32a0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
__import_module__ redecl_merge_top;

@interface Super
@end

@interface A : Super
- (Super*)init;
@end

@class B;

@class Explicit;

int *explicit_func(void);

struct explicit_struct;

#ifdef __cplusplus
template<typename T> class Vector { 
public:
  void push_back(const T&);
};
#endif

int ONE;
__import_module__ redecl_merge_top.Explicit;
const int one = ONE;
OpenPOWER on IntegriCloud