diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/Misc/Inputs/working-directory.h | 1 | ||||
-rw-r--r-- | test/Misc/working-directory.c | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/test/Misc/Inputs/working-directory.h b/test/Misc/Inputs/working-directory.h new file mode 100644 index 0000000000..061df629d6 --- /dev/null +++ b/test/Misc/Inputs/working-directory.h @@ -0,0 +1 @@ +typedef int Foo; diff --git a/test/Misc/working-directory.c b/test/Misc/working-directory.c new file mode 100644 index 0000000000..5c71d9f3f3 --- /dev/null +++ b/test/Misc/working-directory.c @@ -0,0 +1,5 @@ +// RUN: %clang_cc1 -working-directory %S working-directory.c -IInputs -fsyntax-only + +#include "working-directory.h" + +Foo bar; |