mirror of https://github.com/microsoft/clang.git
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:
parent
1c1d4d8677
commit
832c0b47aa
|
@ -0,0 +1,6 @@
|
|||
// RUN: %clang_cc1 -fsyntax-only -fdebugger-support -verify %s
|
||||
// expected-no-diagnostics
|
||||
|
||||
void importAModule() {
|
||||
@import AModuleThatDoesntExist
|
||||
}
|
Loading…
Reference in New Issue