]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail-fulldeps/proc-macro/more-gates.rs
Stabilize `use_extern_macros`
[rust.git] / src / test / compile-fail-fulldeps / proc-macro / more-gates.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:more-gates.rs
12
13 extern crate more_gates as foo;
14
15 use foo::*;
16
17 #[attr2mod]
18 //~^ ERROR: cannot expand to modules
19 pub fn a() {}
20 #[attr2mac1]
21 //~^ ERROR: cannot expand to macro definitions
22 pub fn a() {}
23 #[attr2mac2]
24 //~^ ERROR: cannot expand to macro definitions
25 pub fn a() {}
26
27 mac2mod!(); //~ ERROR: cannot expand to modules
28 mac2mac1!(); //~ ERROR: cannot expand to macro definitions
29 mac2mac2!(); //~ ERROR: cannot expand to macro definitions
30
31 tricky!();
32 //~^ ERROR: cannot expand to modules
33 //~| ERROR: cannot expand to macro definitions
34
35 fn main() {}