aboutsummaryrefslogtreecommitdiff
path: root/test/Modules/Inputs/namespaces-top.h
blob: 006b53c8fd289154252d713673a59f7a27ea75d9 (plain) (blame)
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
namespace N1 { 
  int& f(int);
}

namespace N2 { 
  int& f(int);
}

namespace N3 { 
  int& f(int);
}

namespace N12 { }

namespace N13 {
  void f();
  int f(int);
  void (*p)() = &f;
}

namespace AddAndReexportBeforeImport {
  int S;
}

namespace Empty {}