14 lines
332 B
Objective-C
14 lines
332 B
Objective-C
// RUN: rm -rf %t
|
|
// RUN: %clang -fsyntax-only -fmodules -fmodules-cache-path=%t \
|
|
// RUN: -working-directory %S/Inputs \
|
|
// RUN: -I subdirectory-module-maps-working-dir \
|
|
// RUN: %s -Werror=implicit-function-declaration -Xclang -verify
|
|
|
|
@import ModuleInSubdir;
|
|
|
|
void foo() {
|
|
int x = bar();
|
|
}
|
|
|
|
// expected-no-diagnostics
|