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
/
PCH
/
block-helpers.h
blob
3614cc7be93a060bed25eb6c474d75b00542b422
1
struct
S0
{
2
S0
();
3
S0
(
const
S0
&)
noexcept
(
false
);
4
int
a
;
5
};
6
7
struct
S
{
8
void
m
() {
9
__block S0 x
,
y
;
10
^{ (
void
)
x
; (
void
)
y
; };
11
}
12
};