xref: /llvm-project/clang-tools-extra/test/clang-move/Inputs/multiple_class_test.cpp (revision 9df3ac1f564b0b8367290edceba71a225b7f7f99)
1 #include "multiple_class_test.h"
2 
3 namespace a {
4 int Move1::f() {
5   return 0;
6 }
7 } // namespace a
8 
9 namespace b {
10 int Move2::f() {
11   return 0;
12 }
13 } // namespace b
14 
15 namespace c {
16 int Move3::f() {
17   return 0;
18 }
19 
20 int Move4::f() {
21   return 0;
22 }
23 
24 int NoMove::f() {
25   return 0;
26 }
27 } // namespace c
28