context.c
来自「this is a gcc file, you can download it 」· C语言 代码 · 共 21 行
C
21 行
// PRMS Id: 3988// Bug: DECL_CONTEXT of A::B gets clobbered in pushdecl when defining A::foo().// Build don't link:#pragma implementation "context.h"#line 1 "context.h"#pragma interfacetemplate <class T>struct A { inline void foo () { } class B { };};struct C : public A<int> { void bar (C::B&);};#line 2 "context.C"void C::bar (C::B& b) { }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?