DEBSOURCES
Skip Quicknav
sources / rustc / 1.86.0%2Bdfsg1-1 / tests / ui / generic-associated-types / issue-67510-pass.rs
12345678910
//@ check-fail trait X { type Y<'a>; } fn _func1<'a>(_x: Box<dyn X<Y<'a>=&'a ()>>) {} //~^ ERROR the trait `X` is not dyn compatible fn main() {}