crash6.c

来自「gcc-you can use this code to learn somet」· C语言 代码 · 共 27 行

C
27
字号
// Build don't link:// // Copyright (C) 2001 Free Software Foundation, Inc.// Contributed by Nathan Sidwell 26 April 2001 <nathan@codesourcery.com>// Origin: schmid@snake.iap.physik.tu-darmstadt.de// Bug 2368. When checking shadowed catchers, we didn't ignore// template type parms etc, leading to an ICEtemplate<class CatchType1, class CatchType2>void call(int& a){  try     {          }  catch (CatchType1&)    {           }  catch (CatchType2&)    {           }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?