blob: 20051bf7515b27f6ccc8230c37b1a01ad382515a [file] [log] [blame]
// PR c++/27581
// { dg-do compile }
struct A
{
template<int> static void foo();
static void bar() { this->A::foo<0>(); } // { dg-error "unavailable" }
};