Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
//@ run-pass
struct NonOrd;
fn main() {
let _: Box<dyn Iterator<Item = _>> = Box::new(vec![NonOrd].into_iter());
}