class A { public: static inline int funcA (void) { asm("nop"); return 0; }; }; int dummy () { A b_var; return b_var.funcA (); }