index
:
rust
master
Unnamed repository; edit this file 'description' to name the repository.
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
test
/
run-pass
/
leak-box-as-tydesc.rs
blob: efd55d79b73fe08c51c19a56c76babb748b66c9c (
plain
) (
blame
)
1
2
3
4
5
6
7
fn
leaky
[
T
](
&
T
t
)
{
}
fn
main
()
{
auto
x
=
@
10
;
leaky
[
@
int
](
x
);
}