]> git.proxmox.com Git - rustc.git/blame - src/test/ui/run-pass/macros/paths-in-macro-invocations.rs
New upstream version 1.30.0+dfsg1
[rustc.git] / src / test / ui / run-pass / macros / paths-in-macro-invocations.rs
CommitLineData
476ff2be
SL
1// Copyright 2016 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
b7449926 11// run-pass
476ff2be
SL
12// aux-build:two_macros.rs
13
476ff2be
SL
14extern crate two_macros;
15
16::two_macros::macro_one!();
17two_macros::macro_one!();
18
19mod foo { pub use two_macros::macro_one as bar; }
20
21trait T {
22 foo::bar!();
23 ::foo::bar!();
24}
25
26struct S {
27 x: foo::bar!(i32),
28 y: ::foo::bar!(i32),
29}
30
31impl S {
32 foo::bar!();
33 ::foo::bar!();
34}
35
36fn main() {
37 foo::bar!();
38 ::foo::bar!();
39
40 let _ = foo::bar!(0);
41 let _ = ::foo::bar!(0);
42
43 let foo::bar!(_) = 0;
44 let ::foo::bar!(_) = 0;
45}