Sign in
rust
/
rust-lang
/
rust
/
refs/heads/beta
/
.
/
tests
/
ui
/
proc-macro
/
expand-to-unstable.rs
blob: 8968471ebd872de04956dfaab77dbd38086fa57e [
file
] [
log
] [
blame
]
//@ proc-macro: 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
();
}
}