eb128.C   [plain text]


template<class T>
struct A {
  typedef T* iterator; // ERROR - pointer to reference
public:
  A(){}
};

void f()
{
  A<int&> a;
}