blob: b3a7af7c9d9bc650a03d8f434c7ea51ec2fb804f [file] [log] [blame]
void f1(int &);
static void f2() {}
inline void foo() {
static int i;
f1(i);
f2();
}
inline void foo2() {
}
void foo_ext() {}