xtensa: Add missing speed cost for TYPE_FARITH in TARGET_INSN_COST
[official-gcc.git] / gcc / testsuite / g++.dg / template / crash76.C
blob2711749eca97b97898ddb5e15504b01477ee1eeb
1 // PR c++/34486
3 template<typename> struct A
5   typedef A* X;
6 };
8 template<typename T> struct B
10   using A<T>::X::Y; // { dg-error "not a class" }
13 B<int> b;