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