URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [opt/] [static2.C] - Rev 718
Go to most recent revision | Compare with Previous | Blame | View Log
// Origin: reichelt@igpm.rwth-aachen.de
// PR 5571
// { dg-options "-O2" }
template <class T> struct A {};
struct B
{
static A<int> a;
void f() { a; }
};
A<int> B::a = A<int>();
Go to most recent revision | Compare with Previous | Blame | View Log