2002-10-02 21:46:56 +00:00
|
|
|
struct A
|
|
|
|
{
|
|
|
|
int a;
|
|
|
|
A (int aa): a (aa) {}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct B: public A
|
|
|
|
{
|
|
|
|
int b;
|
|
|
|
B (int aa, int bb): A (aa), b(bb) {}
|
|
|
|
};
|
|
|
|
|
2010-01-18 20:54:35 +00:00
|
|
|
|
|
|
|
struct Alpha
|
|
|
|
{
|
|
|
|
virtual void x() { }
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Gamma
|
|
|
|
{
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Derived : public Alpha
|
|
|
|
{
|
|
|
|
};
|
|
|
|
|
|
|
|
struct VirtuallyDerived : public virtual Alpha
|
|
|
|
{
|
|
|
|
};
|
|
|
|
|
|
|
|
struct DoublyDerived : public VirtuallyDerived,
|
|
|
|
public virtual Alpha,
|
|
|
|
public Gamma
|
|
|
|
{
|
|
|
|
};
|
|
|
|
|
PR exp/13206:
* ax-gdb.c (gen_expr) <OP_TYPEOF, OP_DECLTYPE>: New cases.
* breakpoint.c (watchpoint_exp_is_const) <OP_TYPEOF,
OP_DECLTYPE>: New cases.
* c-exp.y (TYPEOF, DECLTYPE): New tokens.
(type_exp): Add new productions.
(ident_tokens): Add __typeof__, typeof, __typeof, __decltype,
and decltype.
* eval.c (evaluate_subexp_standard) <OP_TYPEOF, OP_DECLTYPE>:
New case.
* expprint.c (dump_subexp_body_standard) <OP_TYPEOF,
OP_DECLTYPE>: New case.
* parse.c (operator_length_standard) <OP_TYPEOF, OP_DECLTYPE>:
New case.
* std-operator.def (OP_TYPEOF, OP_DECLTYPE): New constants.
* varobj.c (varobj_create): Handle OP_TYPEOF, OP_DECLTYPE.
gdb/testsuite
* gdb.cp/casts.exp: Add tests for typeof and decltype.
* gdb.cp/casts.cc (decltype): New function.
(main): Use it.
2012-07-19 15:38:18 +00:00
|
|
|
// Confuse a simpler approach.
|
|
|
|
|
|
|
|
double
|
|
|
|
decltype(int x)
|
|
|
|
{
|
|
|
|
return x + 2.0;
|
|
|
|
}
|
|
|
|
|
2002-10-02 21:46:56 +00:00
|
|
|
int
|
|
|
|
main (int argc, char **argv)
|
|
|
|
{
|
|
|
|
A *a = new B(42, 1729);
|
|
|
|
B *b = (B *) a;
|
2008-04-01 16:16:43 +00:00
|
|
|
A &ar = *b;
|
|
|
|
B &br = (B&)ar;
|
2002-10-02 21:46:56 +00:00
|
|
|
|
2010-01-18 20:54:35 +00:00
|
|
|
Derived derived;
|
|
|
|
DoublyDerived doublyderived;
|
|
|
|
|
|
|
|
Alpha *ad = &derived;
|
|
|
|
Alpha *add = &doublyderived;
|
|
|
|
|
PR exp/13206:
* ax-gdb.c (gen_expr) <OP_TYPEOF, OP_DECLTYPE>: New cases.
* breakpoint.c (watchpoint_exp_is_const) <OP_TYPEOF,
OP_DECLTYPE>: New cases.
* c-exp.y (TYPEOF, DECLTYPE): New tokens.
(type_exp): Add new productions.
(ident_tokens): Add __typeof__, typeof, __typeof, __decltype,
and decltype.
* eval.c (evaluate_subexp_standard) <OP_TYPEOF, OP_DECLTYPE>:
New case.
* expprint.c (dump_subexp_body_standard) <OP_TYPEOF,
OP_DECLTYPE>: New case.
* parse.c (operator_length_standard) <OP_TYPEOF, OP_DECLTYPE>:
New case.
* std-operator.def (OP_TYPEOF, OP_DECLTYPE): New constants.
* varobj.c (varobj_create): Handle OP_TYPEOF, OP_DECLTYPE.
gdb/testsuite
* gdb.cp/casts.exp: Add tests for typeof and decltype.
* gdb.cp/casts.cc (decltype): New function.
(main): Use it.
2012-07-19 15:38:18 +00:00
|
|
|
double y = decltype(2);
|
|
|
|
|
2002-10-02 21:46:56 +00:00
|
|
|
return 0; /* breakpoint spot: casts.exp: 1 */
|
|
|
|
}
|