Sign in
rust
/
rust
/
d7e8f9fc7af4aa4cd65140afaebe48dd1e90e708
/
.
/
tests
/
ui
/
associated-types
/
issue-85103-layout-debug.rs
blob: 7f3fbd17e04cc02cb732960cf0dbe23211478265 [
file
]
#![
feature
(
rustc_attrs
)]
use
std
::
borrow
::
Cow
;
#[
rustc_dump_layout
(
debug
)]
type
Edges
<
'a, E> = Cow<'
a
,
[
E
]>;
//~^ ERROR the trait bound `[E]: ToOwned` is not satisfied
fn
main
()
{}