代码搜索结果
找到约 4,295 项符合
G 的代码
900428_02.c
// g++ 1.37.1 bug 900428_02
// g++ fails to issue either errors or warnings (even with -pedantic) for
// attempts to perform either pre or post increment or decrement operations
// on variables which
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
900324_05.c
// g++ 1.37.1 bug 900324_05
// The following erroneous code causes g++ to segfault.
// Cfront 2.0 passes this test.
// keywords: segfault, arrays, references, assignment operator=
typedef int int_
900324_04.c
// g++ 1.37.1 bug 900324_04
// g++ implements an extension which supports the copying of array objects.
// This extension is not described in the current C++ Reference Manual, and
// it is not imple
900220_01.c
// g++ 1.36.1 bug 900220_01
// Ref: 12.8
// Section 12.8 says:
// "That is, X::operator=() will be generated only if no assignment
// operation is explicitly declared and an object of class X is ac
900331_04.c
// g++ 1.37.1 bug 900331_04
// g++ is unable to correctly parse declarations of formal parameters and
// local objects which have pointer-to-array types or reference-to-array
// types.
// Cfront 2.0
900215_02.c
// g++ 1.36.1 bug 900215_02
// g++ allows global objects (which happen to be pointers to members of some
// class X) to be dereferenced without prefix object specifications within
// member function
900330_01.c
// g++ 1.37.1 bug 900330_01
//
// As indicated by the example at the end of the section 3.5.3 of the ANSI
// C standard, when a type qualifier (i.e. "const" or "volatile") is applied
// to an array ty
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
900210_08.c
// g++ 1.36.1 bug 900210_08
// g++ allows pointer-to-const values to be implicitly converted to
// void* values. This causes a silent loss of the const qualifier.
// Cfront 2.0 passes this test.
/