Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
pr16564.C
blob: 7a34313e906bd073a9ec4ba62ff06f847f107216 [
file
] [
log
] [
blame
]
// { dg-do compile }
template
<typename>
struct
A
{
A
<
A
>
a
;
/* { dg-error "depth" } */
A
()
{}
};
A
<int>
a
;
// { dg-prune-output "compilation terminated" }