代码搜索:parse
找到约 10,000 项符合「parse」的源代码
代码结果 10,000
www.eeworm.com/read/470720/1448017
c parse14.c
// Bug: g++ decides that A::foo is introducing a constructor declarator.
// Build don't link:
struct A {
typedef bool foo;
};
A::foo (*bar) ();
struct B {
A::foo (*bar) ();
};
www.eeworm.com/read/470720/1448049
c parse13.c
// Build don't link:
struct A {
struct B {};
struct C;
};
struct A :: C : A :: B {}; // gets bogus error - parse error before `:'
www.eeworm.com/read/470720/1448050
c parse9.c
// PRMS Id: 5720
// Bug: the extra set of parens confuses the expr/declarator disambiguation.
class Fu
{
int val;
public:
Fu(int i) : val(i) { };
void print() { }
};
int main(int argc, char *
www.eeworm.com/read/470720/1448091
c parse4.c
// Bug: g++ doesn't handle superfluous parentheses when redeclaring a TYPENAME.
// Build don't link:
typedef int foo;
class A {
typedef int ((foo)); // gets bogus error -
};
www.eeworm.com/read/470693/1457353
c parse2.c
// Build don't link:
// Copyright (C) 2000 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 24 Nov 2000
// Bug 531: We ICEd trying to give a parse error.
st
www.eeworm.com/read/470693/1457446
c parse1.c
// Test that we save declspecs before a class defn properly.
// Build don't link:
static volatile union {
void f() { }
} u;
www.eeworm.com/read/470693/1458019
c parse2.c
// Build don't link:
// Origin: Jason Merrill
template struct A {
A (const A&) { }
};
template A::A (const A&);
www.eeworm.com/read/470693/1458846
c parse5.c
// Build don't link:
// this is marked as an expected error because it evidences an
// ambiguity in the grammar between expressions and declarations.
// when the parser's been cleaned up or rewritte
www.eeworm.com/read/470693/1458847
c parse6.c
// Build don't link:
// this is marked as an expected error because it evidences an
// ambiguity in the grammar between expressions and declarations.
// when the parser's been cleaned up or rewritte
www.eeworm.com/read/470693/1458940
c parse2.c
// Build don't link:
// GROUPS passed parsing
class BitString {
public:
int i;
};
typedef BitString BS;
typedef ::BitString cBS;