📄 cleanup1.c
字号:
// { dg-do run }// Bug: obj gets destroyed twice because the fixups for the return are// inside its cleanup region.extern "C" int printf (const char *, ...);int d;struct myExc { };struct myExcRaiser { ~myExcRaiser() { throw myExc(); }};struct stackObj { ~stackObj() { ++d; printf ("stackObj::~stackObj()\n"); };};int test(){ myExcRaiser rais; stackObj obj; return 0;}int main(){ try { test(); } catch (myExc &) { return d != 1; } return 1;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -