Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
error51.C
blob: 304a13a70fb00ed23e618085f41a9dd2c736d788 [
file
] [
log
] [
blame
]
// PR c++/26572
template
<int>
void
foo
()
{
struct
A
;
// { dg-message "declaration" }
struct
B
:
A
{};
// { dg-error "invalid use of incomplete" }
}
template
void
foo
<
0
>();