inline2.c
来自「gcc-you can use this code to learn somet」· C语言 代码 · 共 25 行
C
25 行
// Test that inlining a destructor with a catch block doesn't confuse the// enclosing try block.// Special g++ Options: -Ostruct A { ~A() { try { throw 1; } catch (...) { } }};int main (){ try { A a; throw 42; } catch (int i) { return (i != 42); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?