1void f();
2
3inline int g() { return 0; }
4
5template<typename T>
6void h(T t) {}
7
8template<>
9void h(int t) {}
10
11class A {
12 public:
13 void f();
14};
15

source code of clang-tools-extra/test/clang-move/Inputs/function_test.h