(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
other/
cv_func2.C
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" }