Sign in
gnu
/
gcc
/
fba228e259dd5112851527f2dbb62c5601100985
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.robertl
/
eb13.C
blob: 40c454aae30171f7d5664ff2f00f1c187bb69cee [
file
] [
log
] [
blame
]
// { dg-do assemble }
template
<
class
T
>
class
Array
{
public
:
typedef
T T_numtype
;
};
template
<
class
T_array
>
void
f
(
T_array
,
typename
T_array
::
T_numtype
)
{
}
void
g
()
{
f
(
Array
<float>
(),
float
());
}