cond3.c
来自「linux下编程用 编译软件」· C语言 代码 · 共 11 行
C
11 行
// PR c++/24996// Bug: the cleanup for the A temporary was confusing the gimplifier// because of the TRY_CATCH_EXPR for the exception object.struct A { A(int); ~A(); };struct B { B(A); ~B(); };void foo(bool b){ throw b ? B(1) : B(1);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?