summaryrefslogtreecommitdiffstats
path: root/src/test/ui/associated-types/issue-85103.rs
blob: c5e13856178de7594df00acfe134d0df067262c3 (plain)
1
2
3
4
5
6
7
8
9
#![feature(rustc_attrs)]

use std::borrow::Cow;

#[rustc_layout(debug)]
type Edges<'a, E> = Cow<'a, [E]>;
//~^ ERROR layout error: NormalizationFailure

fn main() {}