llvm-for-llvmta/tools/clang/test/Import/indirect-struct-member-access/test.c

5 lines
106 B
C
Raw Normal View History

2022-04-25 13:02:35 +02:00
// RUN: clang-import-test -import %S/Inputs/S.c -expression %s
void expr(struct S *MyS) {
MyS->a = 3;
}