(root)/
gcc-13.2.0/
gcc/
testsuite/
objc.dg/
naming-3.m
/* Test for class name same as an unrelated struct field name. */
/* { dg-do compile } */
@interface PassThrough {

}
@end

struct S {
	int (*PassThrough)();
};

int main()
{
	PassThrough* pt;
	struct S s;
	s.PassThrough();
}