PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / template / lookup11.C
blob203460eda73100149329fc06a3269bc830fe14b4
1 // PR c++/81026
3 namespace std {
4   template<class> struct extent;
6 using namespace std;
8 template <class T>
9 struct S {
10   void f() { T().template extent<42>(); }