URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [lto/] [pr52035_0.C] - Rev 717
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/52035
// { dg-lto-do assemble }
template <typename T> struct QVector {
typedef T* iterator;
static void insert(int n);
typedef int size_type;
};
template <typename T> void QVector<T>::insert(size_type n) {}
void error()
{
int n;
QVector<int>::insert(n);
}
Go to most recent revision | Compare with Previous | Blame | View Log