blob: c4eaba6bba2351a779624c6d1a1f46dea3c20058 [file] [log] [blame] [edit]
//@ 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(); }
}