debug9.c

来自「用于进行gcc测试」· C语言 代码 · 共 27 行

C
27
字号
/* { dg-do assemble } *//* This testcase requires entries in the debug_range section in DWARF which   refer to a vague linkage function.  */struct s{  ~s ();};bool f1 ();s f2 (s);template<int x> voidf3(const s & a){  while (f1 () && f1 ())    {      s c = f2(a);    }}int main(){   f3<0>(s ());   return 0;}

⌨️ 快捷键说明

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