[Flang][Parser] Add missing #include "flang/Common/idioms.h" (#77484)
[llvm-project.git] / clang-tools-extra / test / clang-move / Inputs / function_test.h
blob810f803b6e86423790e82266aeb6848c55b4f7c7
1 void f();
3 inline int g() { return 0; }
5 template<typename T>
6 void h(T t) {}
8 template<>
9 void h(int t) {}
11 class A {
12 public:
13 void f();