代码搜索结果
找到约 4,295 项符合
G 的代码
900402_01.c
// g++ 1.37.1 bug 900402_01
// The following erroneous code causes g++ to abort.
// Cfront 2.0 passes this test.
// keywords: abort, bit-fields, function types
typedef void (func_type) ();
struct
900208_02.c
// g++ 1.36.1 bug 900208_02
// g++ does not allow a static member of a class/struct/union to be
// declared as an array without an explicit upper bound.
// Cfront 2.0 passes this test.
// keywords:
900220_03.c
// g++ 1.36.1 bug 900220_03
// g++ does not properly disambiguate calls to overloaded functions
// which are nearly identical except that one take a reference to a
// type `T' object and another take
900205_02.c
// 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 does not allow this.
//
900331_02.c
// g++ 1.37.1 bug 900331_02
// g++ fails to treat conditional expressions which yield composite type
// (i.e. struct type, union type, or class type) lvalues as if they did
// in fact yield lvalues i
900210_03.c
// g++ 1.36.1 bug 900210_03
// g++ allows void* type values to be assigned to variables of other
// pointer types. According to the C++ Reference Manual, this is illegal.
// Cfront 2.0 passes this
900519_05.c
// g++ 1.37.1 bug 900519_05
// g++ fails to allow the use of function-reference types.
// cfront 2.0 passes this test.
// keywords: function types, reference types
typedef void (func_type) (int, i
900519_13.c
// g++ 1.37.1 bug 900519_13
// If multiple inheritance creates a situation in which a given name is
// inherited from more than one base class, and if the inherited declarations
// for the name are f
900403_01.c
// g++ 1.37.1 bug 900403_01
// g++ allows casts to be treated as lvalues (even when the -pedantic
// option is used). Neither the C++ Reference Manual nor cfront 2.0
// allow this. (gcc gives warni
900210_07.c
// g++ 1.36.1 bug 900210_07
// g++ allows values of pointer-to-signed types to be assigned to variables
// of pointer-to-unsigned types, and vise versa.
// Cfront 2.0 passes this test.
// keyowrds: