visibility8.c

来自「this is a gcc file, you can download it 」· C语言 代码 · 共 27 行

C
27
字号
// Build don't link: // GROUPS passed visibility// visibility file// From: roland@jts.com (Roland Knight )// Date:     Thu, 29 Apr 1993 16:17:00 -0400// Subject:  gcc 2.3.3 bug// Message-ID: <m0nof3E-0021ifC@jts.comclass t1 {protected:    int a; // ERROR - protected};class t2 : private t1 {public:    int b;};class t3 : public t2 {public:    int ttt();};int t3::ttt() { return a; }// ERROR - .*

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?