PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / template / conv7.C
blob86758b3623d4ed2a952bead4f028cbf6028840db
1 // { dg-options "-fabi-version=0" }
3 template <typename T> struct S {
4     struct I{};
5     operator I* ();
6 };
8 template <typename T> struct S2 : S<T> {
9     operator typename S<T>::I* ();
12 template struct S2<int>;