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