blob: 0d837bd132d35e193d7367353792815405532dbe [file] [log] [blame]
// PR c++/21352
struct coperator_stack
{
template<class type>
void push3()
{
}
};
struct helper {};
template<class F>
void bla(F f) // { dg-error "candidates" }
{
}
template <typename ScannerT>
struct definition
{
definition()
{
bla(coperator_stack::push3<helper>); // { dg-error "" }
}
};