URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [warn/] [Wunused-var-14.C] - Rev 701
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/44682
// { dg-do compile }
// { dg-options "-Wunused" }
struct S { virtual ~S () {} };
struct T { virtual ~T () {} };
struct U : S, T {};
void f (U &);
void
g (void *v)
{
T *t = static_cast <T *> (v);
U *u = static_cast <U *> (t);
f (*u);
}
Go to most recent revision | Compare with Previous | Blame | View Log