ctors5.c
来自「Mac OS X 10.4.9 for x86 Source Code gcc」· C语言 代码 · 共 34 行
C
34 行
// { dg-do assemble }// GROUPS passed constructors// ctors file// Subject: bug in handling static const object of the enclosing class// Date: Tue, 1 Sep 92 10:38:44 EDTclass X{ // { dg-error "X::X" } implicit constructor private: int x; public: static const X x0; X( int );};class Y{ private: X xx; public: Y();}X::X( int xi ) // { dg-error "return type|X::X|semicolon" }{ x = xi;}const X X::x0( 0 );Y::Y() // { dg-error "no match" }{ xx = X::x0;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?