891230_01.c
来自「linux下编程用 编译软件」· C语言 代码 · 共 22 行
C
22 行
// { dg-do run }// 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) { // { dg-bogus "" } s}int main () { return 0; }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?