ipa-cp: Perform operations in the appropriate types (PR 118097)
[gcc.git] / gcc / testsuite / g++.dg / template / dependent-name12.C
blob7ee94e7457d91593eb324a7af33ffcf46cb3921e
1 // PR c++/94057 - template keyword in a typename-specifier.
3 template <bool> struct A;
4 template <typename, typename> struct B;
5 template <typename T, typename U, typename V> struct B<T U::*, V> {
6   typename A<V::x>::type::type t;
7 };