Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
//@ proc-macro: derive-b.rs
#![allow(warnings)]
#[macro_use]
extern crate derive_b;
#[derive(B)]
struct A {
a: &u64
//~^ ERROR: missing lifetime specifier
}
fn main() {