URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [template/] [array17.C] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do compile }
template <typename T>
struct V {
T& operator[](int);
};
struct S {
S operator +(int);
template <typename T> T value();
};
template <typename T>
void R (T v)
{
v[(S() + 0).template value<int>()][0] = 0;
}
int
main ()
{
R(V<V<int> >());
}
Go to most recent revision | Compare with Previous | Blame | View Log