Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
#![crate_type = "lib"]
struct Bar;
impl Bar {
#[no_mangle]
fn bar() -> u8 {
2
}
trait Foo {
fn baz() -> u8;
impl Foo for Bar {
fn baz() -> u8 {
3