blob: 2b6f28b7df5111c44495e87b3c79fc4c817291b6 [file] [log] [blame]
// PR c++/28506
struct A
{
virtual void* foo() = 1; // { dg-error "pure" }
};
struct B
{
void operator()()() = 1; // { dg-error "pure|function|initializer" }
};