Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// aux-build:derive-unstable.rs
#![allow(warnings)]
#[macro_use]
extern crate derive_unstable;
#[derive(Unstable)]
//~^ ERROR: use of unstable library feature
struct A;
fn main() {
unsafe { foo(); }
}