repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PR c++/86728 - C variadic generic lambda.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
lookup10.C
blob
fa90af46c7c9c91818d0caf7504e2a158bd83a1f
1
// PR c++/81204
2
3
namespace std {
4
template<typename, typename> struct set { };
5
}
6
using namespace std;
7
8
template <int I, typename Result>
9
inline void set(Result & res)
10
{
11
res.template set<I>();
12
}