diff options
Diffstat (limited to 'clang-tools-extra/test/clang-move/Inputs/multiple_class_test.cpp')
-rw-r--r-- | clang-tools-extra/test/clang-move/Inputs/multiple_class_test.cpp | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/clang-tools-extra/test/clang-move/Inputs/multiple_class_test.cpp b/clang-tools-extra/test/clang-move/Inputs/multiple_class_test.cpp new file mode 100644 index 00000000000..302475baf0f --- /dev/null +++ b/clang-tools-extra/test/clang-move/Inputs/multiple_class_test.cpp @@ -0,0 +1,27 @@ +#include "multiple_class_test.h" + +namespace a { +int Move1::f() { + return 0; +} +} // namespace a + +namespace b { +int Move2::f() { + return 0; +} +} // namespace b + +namespace c { +int Move3::f() { + return 0; +} + +int Move4::f() { + return 0; +} + +int NoMove::f() { + return 0; +} +} // namespace c |