(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
template/
lookup11.C
// PR c++/81026

namespace std {
  template<class> struct extent;
}
using namespace std;

template <class T>
struct S {
  void f() { T().template extent<42>(); }
};