summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/template/lookup10.C
blob: fa90af46c7c9c91818d0caf7504e2a158bd83a1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// PR c++/81204

namespace std {
  template<typename, typename> struct set { };
}
using namespace std;

template <int I, typename Result>
inline void set(Result & res)
{
    res.template set<I>();
}