brintos

brintos / llvm-project-archived public Read only

0
0
Text · 281 B · d76734a Raw
10 lines · c
1// RUN: rm -rf %t2// RUN: mkdir %t3// RUN: echo 'module X { header "x.h" }' > %t/map4// RUN: echo 'extern int n;' > %t/x.h5// RUN: cd %t6// RUN: %clang_cc1 %s -fmodules -fmodule-map-file=map -fmodules-cache-path=. -verify -I.7// expected-no-diagnostics8#include "x.h"9int *m = &n;10