PR tree-optimization/67955
[official-gcc.git] / gcc / testsuite / g++.dg / ext / is_base_of_incomplete.C
blob4704ff5dee123049ce4595f3bd3d1e875f9a8630
1 // PR c++/50732
3 template <typename T>
4 struct non_instantiable
6   typedef typename T::THIS_TYPE_CANNOT_BE_INSTANTIATED type;
7 };
9 int check[__is_base_of(non_instantiable<int>, void) ? -1 : 1];