llvm-project/clang-tools-extra/test/clang-move/Inputs/function_test.h

15 lines
141 B
C++

void f();
inline int g() { return 0; }
template<typename T>
void h(T t) {}
template<>
void h(int t) {}
class A {
public:
void f();
};