blob: ba3ff4dcee248dc61e1954e066466a8960387fc0 [file] [log] [blame]
// PR c++/83825
// { dg-do compile }
template <int A>
class A {}; // { dg-error "shadows template parameter" }
template <int I>
class B
{
void foo () { A <I> a; }
};
template void B <0>::foo ();