URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [template/] [array22.C] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/48029
template <class T> struct A { };
template <class T, class U> struct B
{
struct N { };
typedef U u;
};
typedef B<int, A<int>(*)[2]> btype;
A<int> v1[2];
btype v2;
Go to most recent revision | Compare with Previous | Blame | View Log