Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-26805.rs
blob: cf75908570acf1ca9997914c0cd72aea554e0fc5 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
struct
NonOrd
;
fn
main
()
{
let
_
:
Box
<
dyn
Iterator
<
Item
=
_
>>
=
Box
::
new
(
vec
![
NonOrd
].
into_iter
());
}