spec3.c
来自「linux下编程用 编译软件」· C语言 代码 · 共 40 行
C
40 行
// { dg-do run }// Testing exception specifications.// Test 3: the bad_exception throw succeeds.#include <stdlib.h>#include <exception>void my_term () { exit (1); }void my_unexp () { throw 42; }voidf () throw (std::bad_exception){ throw 'a';}int main (){ std::set_terminate (my_term); std::set_unexpected (my_unexp); try { f (); } catch (char) { return 2; } catch (int) { return 3; } catch (std::bad_exception) { return 0; } return 5;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?