* gdb.c++/casts.cc, gdb.c++/casts.exp: New test.

This commit is contained in:
Jim Blandy
2002-10-02 21:46:56 +00:00
parent 36dc181bba
commit 10abb1d48f
3 changed files with 104 additions and 0 deletions

View File

@ -0,0 +1,20 @@
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;
return 0; /* breakpoint spot: casts.exp: 1 */
}