Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
//@ check-pass
#![deny(where_clauses_object_safety)]
pub trait Trait {
fn method(&self) where Self: Sync;
}
fn main() {}