summaryrefslogtreecommitdiffstats
path: root/test/PCH/chain-empty-initial-namespace.cpp
blob: bf15caa72cda12b86744dfe70a663cfb0ebc1a85 (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
// no PCH
// RUN: %clang_cc1 -include %s -include %s -fsyntax-only %s
// full PCH
// RUN: %clang_cc1 -chain-include %s -chain-include %s -fsyntax-only %s
#if !defined(PASS1)
#define PASS1

namespace foo {} // no external storage

#elif !defined(PASS2)
#define PASS2

namespace foo {
  void bar();
}

#else
// PASS3

void test() {
  foo::bar(); // no-error
}

#endif