Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
//@ compile-flags: -Znext-solver
trait Foo: Bar<i32> + Bar<u32> {}
trait Bar<T> {}
fn main() {
let x: &dyn Foo = todo!();
let y: &dyn Bar<usize> = x;
//~^ ERROR mismatched types
}