1 /* Verify that sched re-inserts needed scopes properly. */
2 /* { dg-do compile } */
3 /* { dg-options "-mcpu=ev5" { target alpha*-*-* } } */
8 void (T::*x)() __attribute__ ((__unused__)) = &T::bar;
30 template<typename T> struct B { typedef typename T::t t; };
31 template<typename T> struct B<T*> { typedef T& t; };
36 explicit C (const T& i) : b (i) { }
37 typename B<T>::t operator* () const { return *b; }
38 C operator-- (int) { return C (b--); }
41 template void foo <E<C<A**> > > ();
42 template void foo <D<C<A**> > > ();