xref: /llvm-project/clang-tools-extra/test/clang-move/Inputs/test.cpp (revision 7bd492c53a6cafcefaa968fdc1f18416b58cb17c)
1 #include "test.h"
2 #include "test2.h"
3 
4 namespace a {
f()5 int Foo::f() {
6   return 0;
7 }
f2(int a,int b)8 int Foo::f2(int a, int b) {
9   return a + b;
10 }
11 } // namespace a
12