rust/tests/ui/macros/paths-in-macro-invocations.rs
Lukas Wirth eae7fe1bdb Use non-2015 edition paths in tests that do not test for their resolution
This allows for testing these tests on editions other than 2015
2025-06-03 13:35:31 +02:00

37 lines
570 B
Rust

//@ run-pass
#![allow(dead_code)]
//@ aux-build:two_macros-rpass.rs
extern crate two_macros_rpass as two_macros;
::two_macros::macro_one!();
two_macros::macro_one!();
mod foo { pub use two_macros::macro_one as bar; }
trait T {
foo::bar!();
crate::foo::bar!();
}
struct S {
x: foo::bar!(i32),
y: crate::foo::bar!(i32),
}
impl S {
foo::bar!();
crate::foo::bar!();
}
fn main() {
foo::bar!();
crate::foo::bar!();
let _ = foo::bar!(0);
let _ = crate::foo::bar!(0);
let foo::bar!(_) = 0;
let crate::foo::bar!(_) = 0;
}