repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git]
/
clang
/
test
/
Modules
/
module_map_cwd.c
blob
d76734adeeb520f520817f1efcfd1e3ed758fa36
1
// RUN: rm -rf %t
2
// RUN: mkdir %t
3
// RUN: echo 'module X { header "x.h" }' > %t/map
4
// RUN: echo 'extern int n;' > %t/x.h
5
// RUN: cd %t
6
// RUN: %clang_cc1 %s -fmodules -fmodule-map-file=map -fmodules-cache-path=. -verify -I.
7
// expected-no-diagnostics
8
#include
"x.h"
9
int
*
m
= &
n
;