type2.c

来自「gcc3.2.1源代码」· C语言 代码 · 共 20 行

C
20
字号
// Build don't link:// // Copyright (C) 2001 Free Software Foundation, Inc.// Contributed by Nathan Sidwell 11 April 2001 <nathan@codesourcery.com>// Origin:stephen.webb@cybersafe.com // Bug 2125. TYPE_DECLS never had their DECL_CONTEXT set, which// confused forward references to classes.typedef void T;namespace A {  class C;  typedef class C C;  typedef int T;  class C  {    T i;		// got bogus error, found wrong T  };}

⌨️ 快捷键说明

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