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
/
Inputs
/
set-pure-crash
/
b.h
blob
eef7c2b9faaa31ae3df49325aeae9ecabb68c4e5
1
#pragma once
2
3
#include
"a.h"
4
#include
"c.h"
5
6
template
<
typename Fun
,
typename
=
simple
<
Fun
>>
7
void
foo
(
Fun
) {}
8
9
class
Child
:
public
Base
<
Tag
> {
10
public
:
11
void
func
() {
12
foo
([]() {});
13
}
14
};