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