2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git] / gcc / testsuite / g++.dg / template / error51.C
blobb3a6cfb3d279a56bfd352fbca3c09e12d1f69e05
1 // PR c++/26572
3 template<int> void foo()
5   struct A;                // { dg-error "declaration" }
6   struct B : A {};         // { dg-error "invalid use of incomplete" }
9 template void foo<0>();