URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [g++.old-deja/] [g++.pt/] [warn1.C] - Rev 12
Compare with Previous | Blame | View Log
// { dg-do assemble }
// { dg-options "-Wunused" }
template <class T>
struct S
{
struct R
{
R();
~R();
};
void foo()
{
R r; // no warning
int i; // { dg-warning "" } unused
}
S();
~S();
};
void f()
{
S<int> si;
si.foo();
}