Sign in
rust
/
rust
/
52dff85c4e5b68b8a5a871cf7a35b1bf9cbb5028
/
.
/
tests
/
ui
/
array-slice-vec
/
repeat_empty_ok.rs
blob: 25463ea5ee84155c55eb3b6d11dd90164c449b35 [
file
]
#![
crate_type
=
"lib"
]
pub
struct
Header
<
'
a
>
{
pub
value
:
&
'
a
[
u8
],
}
pub
fn
test
()
{
let
headers
=
[
Header
{
value
:
&[]};
128
];
//~^ ERROR the trait bound
}
pub
fn
test2
()
{
let
headers
=
[
Header
{
value
:
&[
0
]};
128
];
//~^ ERROR the trait bound
}