summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/parse/lookup1.C
blob: 0325d3c6926584dea149871d1a6d04d2476abba4 (plain)
1
2
3
4
5
6
7
8
9
#include <list>

using namespace std;

template <class T, class Alloc>
class new_list : public list<T, Alloc> {
public:
    typedef typename list<T, Alloc>::iterator iterator;
};