You've already forked llvm-project
mirror of
https://github.com/encounter/llvm-project.git
synced 2026-03-30 11:27:19 -07:00
76c1d958fb
but ignores module imports in debugger mode, even inside functions. llvm-svn: 223935
7 lines
149 B
Objective-C
7 lines
149 B
Objective-C
// RUN: %clang_cc1 -fsyntax-only -fdebugger-support -verify %s
|
|
// expected-no-diagnostics
|
|
|
|
void importAModule() {
|
|
@import AModuleThatDoesntExist
|
|
}
|