brintos

brintos / llvm-project-archived public Read only

0
0
Text · 234 B · 67a6cc3 Raw
8 lines · plain
1// Tests tht when we preprocess a source, the compiler won't2// require to load the named modules after import.3//4// RUN: %clang_cc1 -std=c++20 -E %s -o - | FileCheck %s5import non_exist_modules;6 7// CHECK: import non_exist_modules;8