]> git.lizzy.rs Git - rust.git/blob - src/test/ui/proc-macro/macros-in-extern.rs
Move former compile-fail-fulldeps tests to ui
[rust.git] / src / test / ui / proc-macro / macros-in-extern.rs
1 // Copyright 2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // aux-build:test-macros.rs
12 // ignore-wasm32
13
14 extern crate test_macros;
15
16 use test_macros::{nop_attr, no_output, emit_input};
17
18 fn main() {
19     assert_eq!(unsafe { rust_get_test_int() }, 0isize);
20     assert_eq!(unsafe { rust_dbg_extern_identity_u32(0xDEADBEEF) }, 0xDEADBEEF);
21 }
22
23 #[link(name = "rust_test_helpers", kind = "static")]
24 extern {
25     #[no_output]
26     //~^ ERROR macro invocations in `extern {}` blocks are experimental
27     fn some_definitely_unknown_symbol_which_should_be_removed();
28
29     #[nop_attr]
30     //~^ ERROR macro invocations in `extern {}` blocks are experimental
31     fn rust_get_test_int() -> isize;
32
33     emit_input!(fn rust_dbg_extern_identity_u32(arg: u32) -> u32;);
34     //~^ ERROR macro invocations in `extern {}` blocks are experimental
35 }