Sign in
rust
/
rust-lang
/
rust
/
refs/heads/lcnr/rustc-dev-guide
/
.
/
tests
/
ui
/
trait-bounds
/
apit-unsized.rs
blob: 469d6a6345ed969571561583ad017001355e1fe0 [
file
] [
log
] [
blame
]
fn
foo
(
_
:
impl
Iterator
<
Item
=
i32
>
+
?
Sized
)
{}
//~ ERROR [E0277]
fn
bar
(
_
:
impl
?
Sized
)
{}
//~ ERROR [E0277]
fn
main
()
{}