anon3.c
来自「用于进行gcc测试」· C语言 代码 · 共 17 行
C
17 行
// PR c++/31187// Bug: the repeated declaration was confusing the compiler into// thinking that foo1 had language internal linkage.class foo { };namespace{ extern foo foo1; foo foo1;}template< foo * >class bar { };bar< &foo1 > bar1;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?