From: Douglas Gregor Date: Mon, 9 Nov 2009 16:06:30 +0000 (+0000) Subject: Verify that code-completion is at least a little bit robust against inclusion of... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ac06a7ca22869836a8bbc77968f0e0a09c2d7771;p=clang 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 --- 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; };