Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
impl-trait
/
issue-99642.rs
blob: ed4786ae8d812a72b3fe9684edd57b1f41ebf4be [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
fn
test
()
->
impl
Iterator
<
Item
=
impl
Sized
>
{
Box
::
new
(
0.
.)
as
Box
<
dyn
Iterator
<
Item
=
_
>>
}
fn
main
()
{}