diff options
Diffstat (limited to 'clang/test/Import/empty-struct/test.c')
-rw-r--r-- | clang/test/Import/empty-struct/test.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/clang/test/Import/empty-struct/test.c b/clang/test/Import/empty-struct/test.c new file mode 100644 index 00000000000..d51a69706dc --- /dev/null +++ b/clang/test/Import/empty-struct/test.c @@ -0,0 +1,5 @@ +// RUN: clang-import-test -import %S/Inputs/S.c -expression %s +void expr() { + struct S MyS; + void *MyPtr = &MyS; +} |