Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
trait T<'a> {
fn a(&'a self) -> &'a bool;
fn b(&self) {
self.a(); //~ ERROR cannot infer
}
fn main() {}