Sign in
gnu
/
gcc
/
fba228e259dd5112851527f2dbb62c5601100985
/
.
/
gcc
/
testsuite
/
g++.dg
/
modules
/
lambda-3.h
blob: 8f60a824ab4afeffc0545fac462d76b9586ea099 [
file
] [
log
] [
blame
]
template
<
int
I
>
inline
constexpr
auto
tmpl
=
[]
{
return
I
;};
inline
const
auto
tpl_1
=
tmpl
<
1
>;
inline
const
auto
tpl_2
=
tmpl
<
2
>;