xref
: /
llvm-project
/
clang
/
test
/
Modules
/
Inputs
/
module-transtive-instantiation
/
bar.cppm
(revision 759f3e297c072165d044a3ac6fa3fc2f30df86ab)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
export module bar;
2
import Templ;
3
export template<class T>
4
int bar() {
5
return G<T>()();
6
}
7