2018-03-10 20:16:26 -06:00
|
|
|
// ignore-wasm32
|
|
|
|
|
|
|
|
#![feature(decl_macro)]
|
|
|
|
|
|
|
|
macro_rules! returns_isize(
|
|
|
|
($ident:ident) => (
|
|
|
|
fn $ident() -> isize;
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
macro takes_u32_returns_u32($ident:ident) {
|
|
|
|
fn $ident (arg: u32) -> u32;
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! emits_nothing(
|
|
|
|
() => ()
|
|
|
|
);
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
assert_eq!(unsafe { rust_get_test_int() }, 0isize);
|
|
|
|
assert_eq!(unsafe { rust_dbg_extern_identity_u32(0xDEADBEEF) }, 0xDEADBEEFu32);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[link(name = "rust_test_helpers", kind = "static")]
|
|
|
|
extern {
|
|
|
|
returns_isize!(rust_get_test_int);
|
2018-08-03 21:17:51 -05:00
|
|
|
//~^ ERROR macro invocations in `extern {}` blocks are experimental
|
2018-03-10 20:16:26 -06:00
|
|
|
takes_u32_returns_u32!(rust_dbg_extern_identity_u32);
|
2018-08-03 21:17:51 -05:00
|
|
|
//~^ ERROR macro invocations in `extern {}` blocks are experimental
|
2018-03-10 20:16:26 -06:00
|
|
|
emits_nothing!();
|
2018-08-03 21:17:51 -05:00
|
|
|
//~^ ERROR macro invocations in `extern {}` blocks are experimental
|
2018-03-10 20:16:26 -06:00
|
|
|
}
|