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() {}