PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / objc.dg / naming-3.m
blobdea388c5bd7eb094718f3e2535838033e5bc7df1
1 /* Test for class name same as an unrelated struct field name. */
2 /* { dg-do compile } */
3 @interface PassThrough {
6 @end
8 struct S {
9         int (*PassThrough)();
12 int main()
14         PassThrough* pt;
15         struct S s;
16         s.PassThrough();