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