brintos

brintos / llvm-project-archived public Read only

0
0
Text · 408 B · 4a37dc1 Raw
9 lines · cpp
1// RUN: rm -rf %t && mkdir %t2// RUN: %clang_cc1 -fmodules -x c++ %S/Inputs/explicit-build-diags/module.modulemap -fmodule-name=a -emit-module -o %t/a.pcm3// RUN: %clang_cc1 -fmodules -Wdeprecated-declarations -fdiagnostics-show-note-include-stack -serialize-diagnostic-file %t/tu.dia \4// RUN:   -I %S/Inputs/explicit-build-diags -fmodule-file=%t/a.pcm -fsyntax-only %s5 6#include "a.h"7 8void foo() { a(); }9