diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-11-09 16:06:30 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-11-09 16:06:30 +0000 |
commit | ac06a7ca22869836a8bbc77968f0e0a09c2d7771 (patch) | |
tree | 549123f356df83dae768029fd3f62f40d9716b33 /test/Index/code-completion.cpp | |
parent | 3ac738567fdf4df636b9e76c5a2d3dc3d6f80235 (diff) |
Verify that code-completion is at least a little bit robust against inclusion of missing headers
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@86551 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Index/code-completion.cpp')
-rw-r--r-- | test/Index/code-completion.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Index/code-completion.cpp b/test/Index/code-completion.cpp index 875c746525..14129cbeb4 100644 --- a/test/Index/code-completion.cpp +++ b/test/Index/code-completion.cpp @@ -1,5 +1,5 @@ // Code-completion through the C interface - +#include "nonexistent_header.h" struct X { int member; }; |