Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
non-deducible1.C
blob: 421352489041c6d69a6d759bfdf52b063b479c6d [
file
] [
log
] [
blame
]
// PR c++/23055
template
<class>
struct
S
{
typedef
int
type
;
};
template
<
class
T
>
int
foo
(
T
,
typename
S
<
T
>::
type
*
ret
);
int
j
=
foo
(
1
,
0
);