crash40.c
来自「linux下编程用 编译软件」· C语言 代码 · 共 20 行
C
20 行
// { dg-do assemble }// Copyright (C) 2001 Free Software Foundation, Inc.// Contributed by Nathan Sidwell 11 April 2001 <nathan@codesourcery.com>// Origin: Theo Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>// Bug 1917. We were considering thunks to clones to be clones. and// hence getting confused.struct A { virtual ~A(); };struct B { virtual ~B(); };struct C: public A,B {};template <class TYPE>inline TYPEsqr(const TYPE& x) { return 1;}int f(const int t) { return sqr(t); }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?