xref: /minix3/external/bsd/llvm/dist/clang/test/Index/load-namespaces.cpp (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1f4a2713aSLionel Sambuc // Test is line- and column-sensitive; see below.
2f4a2713aSLionel Sambuc 
3f4a2713aSLionel Sambuc namespace std {
4f4a2713aSLionel Sambuc   namespace rel_ops {
5f4a2713aSLionel Sambuc     void f();
6f4a2713aSLionel Sambuc   }
7f4a2713aSLionel Sambuc }
8f4a2713aSLionel Sambuc 
9f4a2713aSLionel Sambuc namespace std {
10f4a2713aSLionel Sambuc   void g();
11f4a2713aSLionel Sambuc }
12f4a2713aSLionel Sambuc 
13f4a2713aSLionel Sambuc namespace std98 = std;
14f4a2713aSLionel Sambuc namespace std0x = std98;
15f4a2713aSLionel Sambuc 
16f4a2713aSLionel Sambuc using namespace std0x;
17f4a2713aSLionel Sambuc 
18f4a2713aSLionel Sambuc namespace std {
19f4a2713aSLionel Sambuc   int g(int);
20f4a2713aSLionel Sambuc }
21f4a2713aSLionel Sambuc 
22f4a2713aSLionel Sambuc using std::g;
23f4a2713aSLionel Sambuc 
g()24f4a2713aSLionel Sambuc void std::g() {
25f4a2713aSLionel Sambuc }
26f4a2713aSLionel Sambuc 
27f4a2713aSLionel Sambuc namespace my_rel_ops = std::rel_ops;
28f4a2713aSLionel Sambuc 
29f4a2713aSLionel Sambuc // RUN: c-index-test -test-load-source all %s | FileCheck %s
30f4a2713aSLionel Sambuc // CHECK: load-namespaces.cpp:3:11: Namespace=std:3:11 (Definition) Extent=[3:1 - 7:2]
31f4a2713aSLionel Sambuc // CHECK: load-namespaces.cpp:4:13: Namespace=rel_ops:4:13 (Definition) Extent=[4:3 - 6:4]
32f4a2713aSLionel Sambuc // CHECK: load-namespaces.cpp:5:10: FunctionDecl=f:5:10 Extent=[5:5 - 5:13]
33f4a2713aSLionel Sambuc // CHECK: load-namespaces.cpp:9:11: Namespace=std:9:11 (Definition) Extent=[9:1 - 11:2]
34f4a2713aSLionel Sambuc // CHECK: load-namespaces.cpp:10:8: FunctionDecl=g:10:8 Extent=[10:3 - 10:11]
35f4a2713aSLionel Sambuc // CHECK: load-namespaces.cpp:13:11: NamespaceAlias=std98:13:11 Extent=[13:1 - 13:22]
36f4a2713aSLionel Sambuc // CHECK: load-namespaces.cpp:13:19: NamespaceRef=std:3:11 Extent=[13:19 - 13:22]
37f4a2713aSLionel Sambuc // CHECK: load-namespaces.cpp:14:11: NamespaceAlias=std0x:14:11 Extent=[14:1 - 14:24]
38f4a2713aSLionel Sambuc // CHECK: load-namespaces.cpp:14:19: NamespaceRef=std98:13:11 Extent=[14:19 - 14:24]
39f4a2713aSLionel Sambuc // CHECK: load-namespaces.cpp:16:17: UsingDirective=:16:17 Extent=[16:1 - 16:22]
40f4a2713aSLionel Sambuc // CHECK: load-namespaces.cpp:16:17: NamespaceRef=std0x:14:11 Extent=[16:17 - 16:22]
41f4a2713aSLionel Sambuc // CHECK: load-namespaces.cpp:18:11: Namespace=std:18:11 (Definition) Extent=[18:1 - 20:2]
42f4a2713aSLionel Sambuc // CHECK: load-namespaces.cpp:19:7: FunctionDecl=g:19:7 Extent=[19:3 - 19:13]
43*0a6a1f1dSLionel Sambuc // CHECK: load-namespaces.cpp:19:12: ParmDecl=:19:12 (Definition) Extent=[19:9 - 19:12]
44f4a2713aSLionel Sambuc // CHECK: load-namespaces.cpp:22:12: UsingDeclaration=g[19:7, 10:8] Extent=[22:1 - 22:13]
45f4a2713aSLionel Sambuc // CHECK: load-namespaces.cpp:22:7: NamespaceRef=std:18:11 Extent=[22:7 - 22:10]
46f4a2713aSLionel Sambuc // CHECK: load-namespaces.cpp:24:11: FunctionDecl=g:24:11 (Definition) Extent=[24:1 - 25:2]
47f4a2713aSLionel Sambuc // CHECK: load-namespaces.cpp:24:6: NamespaceRef=std:18:11 Extent=[24:6 - 24:9]
48f4a2713aSLionel Sambuc // CHECK: load-namespaces.cpp:27:11: NamespaceAlias=my_rel_ops:27:11 Extent=[27:1 - 27:36]
49f4a2713aSLionel Sambuc // CHECK: load-namespaces.cpp:27:24: NamespaceRef=std:18:11 Extent=[27:24 - 27:27]
50f4a2713aSLionel Sambuc // CHECK: load-namespaces.cpp:27:29: NamespaceRef=rel_ops:4:13 Extent=[27:29 - 27:36]
51