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