aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Preprocessor/multiple-inclusion-opt.h
blob: d346c9d5d22e456302ef94534b390c66d21c310b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# // null directive and comments before include guard

#ifndef MULTIPLE_INCLUSION_OPT

int foo();

// The position of the define should not matter
#define MULTIPLE_INCLUSION_OPT

int bar();

#endif

#
#
/* Two null directives
   and a multiline comment
   after the #endif */