📄 anon7.c
字号:
// Build don't link:struct A { union { int a; // ERROR - conflicts with previous declaration }; int a; // ERROR - };struct B { int b; // ERROR - conflicts with previous declaration union { int b; // ERROR - duplicate member }; // ERROR - declaration of};struct C { union { int c; // ERROR - conflicts with previous declaration }; union { int c; // ERROR - duplicate member }; // ERROR - declaration of};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -