Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
g++.dg
/
parse
/
pr101783.C
blob: 4e0a435dd0b55a706c2a9057c40580528891f97e [
file
] [
log
] [
blame
]
template
<
class
T
>
struct
A
{
typedef
T
&
Type
;
};
template
<
class
T
>
void
f
(
const
typename
A
<
T
>::
Type
){}
template
<>
void
f
<int>
(
const
typename
A
<int>
::
Type
){}