Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
struct A {
banana: u8,
}
impl A {
fn new(peach: u8) -> A {
A {
banana: banana //~ ERROR cannot find value `banana` in this scope
fn foo(&self, peach: u8) -> A {
fn main() {}