anon5.c
来自「用于进行gcc测试」· C语言 代码 · 共 22 行
C
22 行
// PR c++/28409// shouldIbevisible should be emitted because it's an extern "C" decl with// external linkage, even though it's in the anonymous namespace.namespace{ extern "C" int shouldIbevisible() { return 0; }}namespace t{ extern "C" int shouldIbevisible(void);}int main(void){ return t::shouldIbevisible();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?