Added a testcase to make sure the parser allows

but ignores module imports in debugger mode,
even inside functions.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@223935 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Sean Callanan 2014-12-10 18:57:09 +00:00
parent 1c1d4d8677
commit 832c0b47aa
1 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
// RUN: %clang_cc1 -fsyntax-only -fdebugger-support -verify %s
// expected-no-diagnostics
void importAModule() {
@import AModuleThatDoesntExist
}