f0050c2089
* gdb.cp/casts.exp: New test cases for up/down casting references.
22 lines
284 B
C++
22 lines
284 B
C++
struct A
|
|
{
|
|
int a;
|
|
A (int aa): a (aa) {}
|
|
};
|
|
|
|
struct B: public A
|
|
{
|
|
int b;
|
|
B (int aa, int bb): A (aa), b(bb) {}
|
|
};
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
A *a = new B(42, 1729);
|
|
B *b = (B *) a;
|
|
A &ar = *b;
|
|
B &br = (B&)ar;
|
|
|
|
return 0; /* breakpoint spot: casts.exp: 1 */
|
|
}
|