URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [template/] [access13.C] - Rev 832
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do compile }
// Origin: Francesco Monica <fmonica@ce.unipr.it>
// PR c++/13262: Access checking during instantiation of static data
// member.
template <typename T> class Aclass {
private:
Aclass() {}
static Aclass instance;
};
template <typename T> Aclass<T> Aclass<T>::instance;
template class Aclass<int>;
Go to most recent revision | Compare with Previous | Blame | View Log