⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 891230_01.c

📁 linux下的gcc编译器
💻 C
字号:
// g++ 1.36.1 bug 891230_01// g++ gives typedefs which are nested within class declarations a scope// which is local to the class declaration itself.  This causes examples// like the following to get compile-time errors.// Cfront 2.0 passes this test.// keywords: typedef, nested types, scopestruct foo {    typedef foo* foo_p;    void member (foo_p);};void foo::member (foo_p p) {	// gets bogus errors}int main () { return 0; }

⌨️ 快捷键说明

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