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
/
ASTMerge
/
std-initializer-list
/
Inputs
/
il.cpp
blob
3b2ac187c8864048c55e0b6c8af7ad2687b1d893
1
namespace
std
{
2
template
<
typename T
>
3
struct
initializer_list
{
4
const
T
*
begin
, *
end
;
5
initializer_list
();
6
};
7
}
// namespace std
8
9
std
::
initializer_list
<
int
>
IL
= {
1
,
2
,
3
,
4
};