📄 attrib32.c
字号:
// PR c++/35315typedef union { int i; } U __attribute__((transparent_union));static void foo(U) {}static void foo(int) {}void bar(){ foo(0);}typedef union U1 { int i; } U2 __attribute__((transparent_union));static void foo2(U1) {}static void foo2(U2) {}void bar2(U1 u1, U2 u2){ foo2(u1); foo2(u2);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -