Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
typedef10.C
blob: c2a2108f04adf90b438c0cc875482633a6adab2e [
file
] [
log
] [
blame
]
// PR c++/34573
template
<
class
Gtr_
>
void
compute_gr
()
{
typedef
int
Less_chain
;
struct
utils
{
utils
(
const
Less_chain
&
lc
)
{};
};
utils U
(
1
);
}
int
main
(
void
){
compute_gr
<int>
();
}