mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 17:24:06 +00:00
13 lines
258 B
Rust
13 lines
258 B
Rust
pub fn foo() {}
|
|
|
|
#[macro_export]
|
|
macro_rules! macro_2015 {
|
|
() => {
|
|
use edition_lint_paths as other_name;
|
|
use edition_lint_paths::foo as other_foo;
|
|
fn check_macro_2015() {
|
|
::edition_lint_paths::foo();
|
|
}
|
|
}
|
|
}
|