2018-05-11 12:02:17 -05:00
|
|
|
pub fn foo() {}
|
2018-11-28 13:52:58 -06:00
|
|
|
|
|
|
|
#[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();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|