blob: bbe26c61aea33012e5c9766274ad96a68b983b4a (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
// THIS IS A GENERATED TEST. DO NOT EDIT.
// To regenerate, see clang-doc/gen_test.py docstring.
//
// RUN: rm -rf %t
// RUN: mkdir %t
// RUN: echo "" > %t/compile_flags.txt
// RUN: cp "%s" "%t/test.cpp"
namespace A {
void f();
} // namespace A
namespace A {
void f(){};
namespace B {
enum E { X };
E func(int i) { return X; }
} // namespace B
} // namespace A
// RUN: clang-doc --format=md --doxygen --public --extra-arg=-fmodules-ts -p %t %t/test.cpp -output=%t/docs
// RUN: cat %t/docs/./A.md | FileCheck %s --check-prefix CHECK-0
// CHECK-0: # namespace A
// CHECK-0: ## Functions
// CHECK-0: ### f
// CHECK-0: *void f()*
// CHECK-0: *Defined at line 17 of {{.*}}*
// RUN: cat %t/docs/A/B.md | FileCheck %s --check-prefix CHECK-1
// CHECK-1: # namespace B
// CHECK-1: ## Functions
// CHECK-1: ### func
// CHECK-1: *enum A::B::E func(int i)*
// CHECK-1: *Defined at line 23 of {{.*}}*
// CHECK-1: ## Enums
// CHECK-1: | enum E |
// CHECK-1: --
// CHECK-1: | X |
// CHECK-1: *Defined at line 21 of {{.*}}*
|