rt_gccstream/gcc/testsuite/g++.dg/other/cv_func2.C

19 lines
294 B
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" }