Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
dependent-expr9.C
blob: e5abc2525d389238c34dd2cca20b7a6037c10c2b [
file
] [
log
] [
blame
]
// PR c++/69753
class
A
{
public
:
template
<class>
void
m_fn1
();
};
A
*
fn1
(
int
*);
template
<typename>
class
B
:
A
{
static
int
*
m_fn2
()
{
fn1
(
m_fn2
())->
m_fn1
<
A
>();
return
0
;
}
};