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
/
Import
/
local-struct
/
Inputs
/
Callee.cpp
blob
96cd2f22e49349a39abbf384a88fe479befa06dc
1
struct
Bar
{
2
void
bar
(
int
_a
,
bool
_b
) {
3
{
4
struct
S
{
int
a
; };
5
S s
= {
_a
};
6
}
7
{
8
struct
S
{
bool
b
; };
9
S t
= {
_b
};
10
}
11
};
12
};