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