brintos

brintos / llvm-project-archived public Read only

0
0
Text · 355 B · 43488e8 Raw
14 lines · plain
1// RUN: rm -rf %t2// RUN: %clang_cc1 -fsyntax-only -fmodules -fimplicit-module-maps -fmodules-cache-path=%t \3// RUN:    -working-directory %S/Inputs \4// RUN:    -I subdirectory-module-maps-working-dir \5// RUN:    %s -Werror=implicit-function-declaration -verify6 7@import ModuleInSubdir;8 9void foo(void) {10  int x = bar();11}12 13// expected-no-diagnostics14