Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.old-deja / g++.robertl / eb128.C
blobd3d48e18ae2b55ad88379793921f3721835eaeba
1 // { dg-do assemble  }
2 template<class T>
3 struct A {
4   typedef T* iterator; // { dg-error "" } pointer to reference
5 public:
6   A(){}
7 };
9 void f()
11   A<int&> a;