blob: e92d89a4c3bdaa1422fe8bbbacaa5c856db656a5 [file] [log] [blame]
extern void f();
extern void g();
struct Foo { static inline void Bar() { f(); } };
static void Func() { Foo::Bar(); }
int main() { g (); Func(); return 0; }