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
/
dependent-expr9.C
blob
e5abc2525d389238c34dd2cca20b7a6037c10c2b
1
// PR c++/69753
2
3
class A {
4
public:
5
template <class> void m_fn1();
6
};
7
A *fn1(int *);
8
template <typename> class B : A {
9
static int *m_fn2() { fn1(m_fn2())->m_fn1<A>(); return 0; }
10
};