Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
impl-trait
/
issue-99642-2.rs
blob: 0e88b363338a951f2a1a88fafaf2fd36036ad966 [
file
] [
log
] [
blame
]
// check-pass
#![
feature
(
type_alias_impl_trait
)]
type
Opq
=
impl
Sized
;
fn
test
()
->
impl
Iterator
<
Item
=
Opq
>
{
Box
::
new
(
0.
.)
as
Box
<
dyn
Iterator
<
Item
=
_
>>
}
fn
main
(){}