Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
typename18.C
blob: 4134ef6f64bf8b100856ddf4be7fba2cd0e57b48 [
file
] [
log
] [
blame
]
// { dg-do compile }
// These typename should work as they are types.
struct
A
{
typedef
int
a
;
template
<int>
struct
f
{};
template
<int>
void
foo
(
int
i
)
{
typename
A
::
a
(
i1
);
typename
A
::
f
<
0
>(
i2
);
}
};