//@ normalize-stderr-test "DefId\(.+?\)" -> "DefId(..)" #![feature(rustc_attrs)] #[rustc_dump_predicates] trait Trait: Iterator //~^ ERROR rustc_dump_predicates where String: From { #[rustc_dump_predicates] #[rustc_dump_item_bounds] type Assoc: std::ops::Deref //~^ ERROR rustc_dump_predicates //~| ERROR rustc_dump_item_bounds where Self::Assoc<()>: Copy; } fn main() {}