blob: 203460eda73100149329fc06a3269bc830fe14b4 [file] [log] [blame]
// PR c++/81026
namespace std {
template<class> struct extent;
}
using namespace std;
template <class T>
struct S {
void f() { T().template extent<42>(); }
};