2021-10-21 11:11:36 +00:00
|
|
|
// aux-build:macro_rules.rs
|
|
|
|
|
2018-07-28 15:34:52 +00:00
|
|
|
#![allow(unused, clippy::no_effect, clippy::unnecessary_operation)]
|
|
|
|
#![warn(clippy::mut_mut)]
|
2015-09-07 20:58:15 +00:00
|
|
|
|
2021-10-21 11:11:36 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate macro_rules;
|
|
|
|
|
2018-12-09 22:26:16 +00:00
|
|
|
fn fun(x: &mut &mut u32) -> bool {
|
2015-08-11 18:22:20 +00:00
|
|
|
**x > 0
|
2015-05-18 07:02:24 +00:00
|
|
|
}
|
|
|
|
|
2018-12-09 22:26:16 +00:00
|
|
|
fn less_fun(x: *mut *mut u32) {
|
|
|
|
let y = x;
|
2015-09-07 20:58:15 +00:00
|
|
|
}
|
|
|
|
|
2015-05-25 23:45:15 +00:00
|
|
|
macro_rules! mut_ptr {
|
2018-12-09 22:26:16 +00:00
|
|
|
($p:expr) => {
|
|
|
|
&mut $p
|
|
|
|
};
|
2015-08-11 18:22:20 +00:00
|
|
|
}
|
2015-05-25 23:45:15 +00:00
|
|
|
|
2015-05-18 08:41:15 +00:00
|
|
|
#[allow(unused_mut, unused_variables)]
|
2015-05-18 07:02:24 +00:00
|
|
|
fn main() {
|
2017-02-08 13:58:07 +00:00
|
|
|
let mut x = &mut &mut 1u32;
|
2015-08-11 18:22:20 +00:00
|
|
|
{
|
2017-02-08 13:58:07 +00:00
|
|
|
let mut y = &mut x;
|
2015-08-11 18:22:20 +00:00
|
|
|
}
|
|
|
|
|
2016-06-21 20:54:22 +00:00
|
|
|
if fun(x) {
|
2018-12-09 22:26:16 +00:00
|
|
|
let y: &mut &mut u32 = &mut &mut 2;
|
2016-06-21 20:54:22 +00:00
|
|
|
**y + **x;
|
|
|
|
}
|
|
|
|
|
2015-08-11 18:22:20 +00:00
|
|
|
if fun(x) {
|
2018-12-09 22:26:16 +00:00
|
|
|
let y: &mut &mut &mut u32 = &mut &mut &mut 2;
|
2015-08-11 18:22:20 +00:00
|
|
|
***y + **x;
|
|
|
|
}
|
|
|
|
|
2016-06-05 16:07:12 +00:00
|
|
|
let mut z = mut_ptr!(&mut 3u32);
|
2015-05-18 07:02:24 +00:00
|
|
|
}
|
2016-06-21 20:54:22 +00:00
|
|
|
|
|
|
|
fn issue939() {
|
|
|
|
let array = [5, 6, 7, 8, 9];
|
|
|
|
let mut args = array.iter().skip(2);
|
|
|
|
for &arg in &mut args {
|
|
|
|
println!("{}", arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
let args = &mut args;
|
|
|
|
for arg in args {
|
|
|
|
println!(":{}", arg);
|
|
|
|
}
|
|
|
|
}
|
2021-10-21 11:11:36 +00:00
|
|
|
|
|
|
|
fn issue6922() {
|
|
|
|
// do not lint from an external macro
|
|
|
|
mut_mut!();
|
|
|
|
}
|