cvt4.c
来自「this is a gcc file, you can download it 」· C语言 代码 · 共 28 行
C
28 行
// GROUPS passed conversions// cvt file// Message-Id: <9308091213.AA11572@emmy.Mathematik.Uni-Dortmund.DE>// From: Michael Strauch <strauch@emmy.mathematik.uni-dortmund.de>// Subject: Bug in GCC 2.4.5// Date: Mon, 9 Aug 93 14:13:50 MESZextern "C" int printf (const char *, ...);int destruct = 2; class Test{ protected: long x; public: Test(){;} Test(long l) {x=l;} ~Test() {if (--destruct == 0) printf ("PASS\n");} };int main() { long i=1; Test t; t=(Test)i; }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?