llvm-for-llvmta/tools/clang/test/Modules/Inputs/codegen-opt/foo.h

11 lines
132 B
C
Raw Permalink Normal View History

2022-04-25 13:02:35 +02:00
void f1(int &);
static void f2() {}
inline void foo() {
static int i;
f1(i);
f2();
}
inline void foo2() {
}
void foo_ext() {}