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
/
module-transtive-instantiation
/
Templ.cppm
blob
ee41b5374613fc870021233c75c82433c4c98b1e
1
export module Templ;
2
export template <class T>
3
class G {
4
public:
5
T operator()() {
6
return T();
7
}
8
};