xref: /aosp_15_r20/external/clang/test/CodeGen/OpaqueStruct.c (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // RUN: %clang_cc1 %s -emit-llvm -o %t
2 typedef struct a b;
3 
4 b* x;
5 
6 struct a {
7   b* p;
8 };
9 
f()10 void f() {
11   b* z = x->p;
12 }
13