diff options
Diffstat (limited to 'clang/test/Import/multiple-forward-declarations/test.c')
-rw-r--r-- | clang/test/Import/multiple-forward-declarations/test.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/test/Import/multiple-forward-declarations/test.c b/clang/test/Import/multiple-forward-declarations/test.c new file mode 100644 index 00000000000..fdaaaf61143 --- /dev/null +++ b/clang/test/Import/multiple-forward-declarations/test.c @@ -0,0 +1,4 @@ +// RUN: clang-import-test -import %S/Inputs/S1.c --import %S/Inputs/S2.c -expression %s +void expr() { + struct S *MySPtr; +} |