代码搜索:CFront

找到约 1,009 项符合「CFront」的源代码

代码结果 1,009
www.eeworm.com/read/190666/5175453

c 900208_04.c

// g++ 1.36.1 bug 900208_04 // The Cfront 2.0 reference manual (5.3.3) says "This type must be an // object type; functions cannot be allocated this way...". // g++ fails to detect (at compile time)
www.eeworm.com/read/162614/5522031

c 900210_09.c

// { dg-do assemble } // g++ 1.36.1 bug 900210_09 // g++ allows pointer to members (both data members and function members) // to be implicitly converted to void*. // Section 4.8 of the Cfront 2.0
www.eeworm.com/read/162614/5522048

c 900205_02.c

// { dg-do assemble } // g++ 1.36.1 bug 900205_02 // g++ allows constructors to be defined which do not include // initializations for reference members of their associated classes. // Cfront 2.0 d
www.eeworm.com/read/162614/5522065

c 900404_03.c

// { dg-do assemble } // g++ 1.37.1 bug 900404_03 // g++ fails to be able to properly flag errors for even simple cases of // ambiguous overload resolution (such as the one shown below). // Cfront
www.eeworm.com/read/340665/3274559

c t42.c

extern "C" void abort (); struct A { struct stat { int x; stat (int j) { abort (); } }; static int stat (double d) { return 0; } // gets bogus error - cfront takes it static int zap (
www.eeworm.com/read/340665/3276065

c 900404_03.c

// g++ 1.37.1 bug 900404_03 // g++ fails to be able to properly flag errors for even simple cases of // ambiguous overload resolution (such as the one shown below). // Cfront 2.0 passes this test.
www.eeworm.com/read/340665/3276075

c 900428_03.c

// g++ 1.37.1 bug 900428_03 // g++ fails to detect cases where a constructor for a derived class invokes // (either explicitly or implicitly) a private constructor for a base class. // cfront 2.0 pa
www.eeworm.com/read/340665/3276076

c 900208_03.c

// g++ 1.36.1 bug 900208_03 // The Cfront 2.0 reference manual (5.3.3) says "This type must be an // object type; functions cannot be allocated this way...". // g++ fails to detect (at compile time)
www.eeworm.com/read/340665/3276084

c 900211_01.c

// g++ 1.36.1 bug 900211_01 // g++ issues only warnings for calls to previously undeclared functions, // however such calls are actually errors. // Cfront 2.0 passes this test. // keywords: undecla
www.eeworm.com/read/340665/3276091

c 900214_01.c

// g++ 1.36.1 bug 900214_01 // g++ allows function members of incomplete types to be declared to be // friends of other types. // Cfront 2.0 passes this test. // keywords: friends, incomplete types