Sign in
rust
/
rust
/
1ce9c977ffcff7c3b12bfe5629a682da0e74a7a1
/
.
/
tests
/
ui
/
associated-types
/
issue-85103-layout-debug.rs
blob: 29a59924ef08260b39d8ff993bb0ef71457c95a2 [
file
] [
log
] [
blame
]
#![
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
()
{}