📄 operators11.c
字号:
// { dg-do assemble }// GROUPS passed operators// opr-eq file// Message-Id: <CCJrut.9M7@csc.ti.com>// From: rowlands@hc.ti.com (Jon Rowlands)// Subject: g++ 2.4.5: assignment operator in base class// Date: Mon, 30 Aug 1993 00:54:29 GMTclass B {public: B & operator = (B); // delete this line and problem goes away};class D : public B {public: D(); D(int); D(B);};intmain() { B b; D d; d = d; d = 0; // t.cxx:20: assignment not defined for type `D' d = D(0); d = b; // t.cxx:23: assignment not defined for type `D' d = D(b); return(0);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -