lookup23.c
来自「linux下的gcc编译器」· C语言 代码 · 共 14 行
C
14 行
// Test for proper handling of type lookup if base class has field with the// same name as the containing class.// Build don't link:struct a { int a; };struct b : a {};b x;void foo (){ x.a = 22;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?