Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
proc-macro
/
expand-to-unstable.rs
blob: 0825c1a8ecbce1ae2e4fa6097c8c48b89546d8c5 [
file
] [
log
] [
blame
]
// 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
();
}
}