Clang Project

clang_source_code/test/Import/empty-struct/test.c
1// RUN: clang-import-test -import %S/Inputs/S.c -expression %s
2void expr() {
3  struct S MyS;
4  void *MyPtr = &MyS;
5}
6