代码搜索:CFront

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

代码结果 1,009
www.eeworm.com/read/233448/4675620

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/229812/4738854

c cdisp10.c

// this code will not work if the CFRONT object model is used #include "fail.h" #include struct V { virtual void set( int x ) { v = x; } virtual int get() { return v; }
www.eeworm.com/read/229812/4739921

c tc22.c

// Borland and MetaWare create a file-scope class T friend! // CFRONT changes template-arg T! (this is after we remove the // use of 'T' as a base class (3.0.2 didn't implement it!)) struct U {
www.eeworm.com/read/190666/5173902

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/190666/5175411

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/190666/5175421

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/190666/5175422

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/190666/5175430

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/190666/5175437

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
www.eeworm.com/read/190666/5175442

c 900210_10.c

// g++ 1.36.1 bug 900210_10 // g++ allows operator[] to be declared as a static member function. // This is illegal. // Cfront 2.0 passes this test. // keywords: operator[], static function members