2018-05-11 10:02:17 -07:00
|
|
|
pub fn foo() {}
|
2018-11-28 22:52:58 +03: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();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|