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

📄 891229_02.c

📁 linux下的gcc编译器
💻 C
字号:
// g++ 1.36.1 bug 891229_02// g++ limits the scope of names which are declared as typedef names within// another type to that other type.// This conflicts with the (global) scope given to such names by cfront 2.0.// Cfront 2.0 passes this test.// Note 2/15/94:  The standard has changed; this limiting of scope is correct// behavior.  See 9.9.  --jason// keywords: typedef, nested types, scopestruct foo {	foo ();	typedef void (*function_p) (void);};function_p fp;		// ERROR - no such type in scopefoo::foo () {}int main () { return 0; }

⌨️ 快捷键说明

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