Sign in
llvm
/
llvm-project
/
d95dadff8f094e793b79eec57737ec397fad7724
/
.
/
lldb
/
test
/
API
/
lang
/
cpp
/
forward
/
main.cpp
blob: c47036b9aa0a7cbf95594e190390c41729692bad [
file
]
#include
"foo.h"
template
<
typename
T
>
struct
bar
{
T a
;
};
int
main
()
{
bar
<int>
b
{
47
};
foo
(&
b
);
return
0
;
}