diff options
Diffstat (limited to 'clang-tools-extra/test/clang-move/Inputs/helper_decls_test.h')
-rw-r--r-- | clang-tools-extra/test/clang-move/Inputs/helper_decls_test.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/clang-tools-extra/test/clang-move/Inputs/helper_decls_test.h b/clang-tools-extra/test/clang-move/Inputs/helper_decls_test.h new file mode 100644 index 00000000000..474e6b3c0dd --- /dev/null +++ b/clang-tools-extra/test/clang-move/Inputs/helper_decls_test.h @@ -0,0 +1,35 @@ +namespace a { +class Class1 { + void f(); +}; + +class Class2 { + void f(); +}; + +class Class3 { + void f(); +}; + +class Class4 { + void f(); +}; + +class Class5 { + void f(); +}; + +class Class6 { + int f(); +}; + +class Class7 { + int f(); + int g(); +}; + +void Fun1(); + +inline void Fun2() {} + +} // namespace a |