2020-06-23 15:05:22 +00:00
|
|
|
// aux-build:macro_rules.rs
|
|
|
|
// aux-build:macro_use_helper.rs
|
2021-06-03 06:41:37 +00:00
|
|
|
// aux-build:proc_macro_derive.rs
|
2020-06-23 15:05:22 +00:00
|
|
|
// run-rustfix
|
|
|
|
// ignore-32bit
|
|
|
|
|
2021-04-22 09:31:13 +00:00
|
|
|
#![allow(unused_imports, unreachable_code, unused_variables, dead_code, unused_attributes)]
|
2020-06-23 15:05:22 +00:00
|
|
|
#![allow(clippy::single_component_path_imports)]
|
2020-03-05 18:22:17 +00:00
|
|
|
#![warn(clippy::macro_use_imports)]
|
2020-02-26 12:40:31 +00:00
|
|
|
|
|
|
|
#[macro_use]
|
2020-06-23 15:05:22 +00:00
|
|
|
extern crate macro_use_helper as mac;
|
|
|
|
|
|
|
|
#[macro_use]
|
2021-06-03 06:41:37 +00:00
|
|
|
extern crate proc_macro_derive as mini_mac;
|
2020-06-23 15:05:22 +00:00
|
|
|
|
|
|
|
mod a {
|
|
|
|
#[macro_use]
|
|
|
|
use mac;
|
|
|
|
#[macro_use]
|
|
|
|
use mini_mac;
|
|
|
|
#[macro_use]
|
|
|
|
use mac::inner;
|
|
|
|
#[macro_use]
|
|
|
|
use mac::inner::nested;
|
2020-02-26 12:40:31 +00:00
|
|
|
|
2020-06-23 15:05:22 +00:00
|
|
|
#[derive(ClippyMiniMacroTest)]
|
|
|
|
struct Test;
|
|
|
|
|
|
|
|
fn test() {
|
|
|
|
pub_macro!();
|
|
|
|
inner_mod_macro!();
|
|
|
|
pub_in_private_macro!(_var);
|
|
|
|
function_macro!();
|
|
|
|
let v: ty_macro!() = Vec::default();
|
|
|
|
|
|
|
|
inner::try_err!();
|
|
|
|
inner::foofoo!();
|
|
|
|
nested::string_add!();
|
|
|
|
}
|
2020-02-26 12:40:31 +00:00
|
|
|
}
|
2020-06-23 15:05:22 +00:00
|
|
|
|
2021-12-23 08:12:34 +00:00
|
|
|
// issue #7015, ICE due to calling `module_children` with local `DefId`
|
2021-04-22 09:31:13 +00:00
|
|
|
#[macro_use]
|
|
|
|
use a as b;
|
|
|
|
|
2020-06-23 15:05:22 +00:00
|
|
|
fn main() {}
|