scoping6.c
来自「this is a gcc file, you can download it 」· C语言 代码 · 共 28 行
C
28 行
// Testcase for all uses of explicit global scope.// Build don't link:int a, B;struct A { };int operator+(A&, int);struct B { struct C { static int a; static int f () { A a; return ::operator+ (a, ::a); } // gets bogus error };};int B::C::a = 0;struct D : public ::B::C { }; // gets bogus errorvoid f (){ int B; ::B::C b; B = ::B::C::a; // gets bogus error B = ::B::C::f(); // gets bogus error}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?