aboutsummaryrefslogtreecommitdiff
path: root/test/Modules/Inputs/macro-ambiguity/b/system/b_system.h
blob: 5b55303265e5072cfe14d4848f6d40a157547128 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef B_SYSTEM_H
#define B_SYSTEM_H

// FIXME: We have to use this to mark the header as a system header in
// a module because header search didn't actually occur and so we can't have
// found the header via system header search, even though when we map to this
// header and load the module we will have mapped to the header by finding it
// via system header search.
#pragma GCC system_header

#define FOO2_SYSTEM(x) x + x
#define BAR2_SYSTEM(x) x + x
#define BAZ2_SYSTEM(x) x + x

#endif