blob: ffd249fc807e032836e85a58eb301da2400c9bc7 [file] [log] [blame]
typedef int ptr1() const; // no error
void foo ()
{
typedef int ptr2() const; // no error
}
class C
{
typedef int ptr3() const; // error
void bar ()
{
typedef int ptr4() const; // no error
}
};
void wibble () const { } // { dg-error "non-member function" }