Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
proc-macro
/
expand-to-unstable.rs
blob: 37bfeab1fe71ed4daff151ee2ce93e5a87f47da2 [
file
] [
log
] [
blame
]
//@ proc-macro: derive-unstable.rs
//@ ignore-backends: gcc
#![
allow
(
warnings
)]
#[
macro_use
]
extern
crate derive_unstable
;
#[
derive
(
Unstable
)]
//~^ ERROR: use of unstable library feature
struct
A
;
fn
main
()
{
unsafe
{
foo
();
}
}