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
/
inheritance
/
Inputs
/
inheritance-base.cpp
blob
26fe42eb64da305eb4c9f295c22023c1f0119602
1
class
A
2
{
3
public
:
4
int
x
;
5
A
(
int
_x
) :
x
(
_x
) {
6
}
7
};