xref: /llvm-project/clang/test/Import/indirect-struct-member-access/test.c (revision 8ca265f4a1a4ee4a875f4e2a19062127bb385b6a)
1 // RUN: clang-import-test -import %S/Inputs/S.c -expression %s
expr(struct S * MyS)2 void expr(struct S *MyS) {
3   MyS->a = 3;
4 }
5