[HLSL] Implement RWBuffer::operator[] via __builtin_hlsl_resource_getpointer (#117017)
[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();