Clang Project
clang_source_code
/
test
/
Modules
/
Inputs
/
merge-function-defs
/
a.h
1
struct X {
2
virtual void f();
3
};
4
inline void X::f() {}
5