Create your own GitHub profile
Sign up for your own profile on GitHub, the best place to host code, manage projects, and build software alongside 50 million developers.
Sign upPopular repositories
469 contributions in the last year
Contribution activity
December 2020
Created an issue in rust-lang/rust that received 1 comment
"expected X found X" diagnostic for lifetime mismatch in method signature of trait impl
With this code: struct Foo(u32); impl From<&Foo> for &u32 { fn from(foo: &Foo) -> &u32 { &foo.0 } } The error message is: error: `impl` item signa…