access16.c
来自「gcc3.2.1源代码」· C语言 代码 · 共 21 行
C
21 行
// Bug: g++ uses the same binfo for the a subobject of c and the a subobject// of b, so basetype_paths get bashed improperly.// Build don't link:class a {protected: virtual void foo() { } // gets bogus error};class b : public virtual a {};class c : public b {public: void bar() { b::foo(); } // gets bogus error};int main() { c test; test.bar();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?