Sign in
gnu
/
gcc.git
/
ab7c7b46c35ed1be68d4c020a2f20ee96f68b64b
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
dtor2.C
blob: d8b6b4f5cb1ab9e431039b30e0282224c1b65c03 [
file
]
struct
Foo
{
template
<
int
i
>
~
Foo
()
{}
// { dg-error "5:destructor .Foo::~Foo\\\(\\\)." }
};
int
main
()
{
Foo
f
;
}