blob: 55953ed80100d559c5ff6f870f71313dc8e548cd [file] [log] [blame]
// PR c++/18512
template <int> struct A {};
struct B : A<0>
{
void foo() { this->A<0>; } // { dg-error "" }
};