index
:
rustc
debian
progress-linux
upstream
debian 12 backports: mozilla
Progress Linux
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
src
/
tools
/
clippy
/
tests
/
ui
/
crashes
/
ice-6139.rs
blob: f3966e47f5e808eda8fd3f75e0f40ec03b7c8ebc (
plain
)
1
2
3
4
5
6
7
trait
T
<'
a
>
{}
fn
foo
(
_
:
Vec
<
Box
<
dyn
T
<'
_
>>>
)
{}
fn
main
()
{
foo
(
vec!
[]);
}