2018-10-06 18:18:06 +02:00
|
|
|
// Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
|
2018-10-11 12:16:22 +02:00
|
|
|
|
2017-09-18 12:47:33 +02:00
|
|
|
|
|
|
|
|
2018-07-28 17:34:52 +02:00
|
|
|
#![allow(unused, clippy::no_effect, clippy::unnecessary_operation)]
|
|
|
|
#![warn(clippy::mut_mut)]
|
2015-09-07 22:58:15 +02:00
|
|
|
|
2018-05-11 13:20:39 +02:00
|
|
|
|
|
|
|
|
2015-05-26 01:45:15 +02:00
|
|
|
|
2017-02-08 14:58:07 +01:00
|
|
|
fn fun(x : &mut &mut u32) -> bool {
|
2015-08-11 20:22:20 +02:00
|
|
|
**x > 0
|
2015-05-18 09:02:24 +02:00
|
|
|
}
|
|
|
|
|
2015-09-07 22:58:15 +02:00
|
|
|
fn less_fun(x : *mut *mut u32) {
|
|
|
|
let y = x;
|
|
|
|
}
|
|
|
|
|
2015-05-26 01:45:15 +02:00
|
|
|
macro_rules! mut_ptr {
|
2015-08-11 20:22:20 +02:00
|
|
|
($p:expr) => { &mut $p }
|
|
|
|
}
|
2015-05-26 01:45:15 +02:00
|
|
|
|
2015-05-18 10:41:15 +02:00
|
|
|
#[allow(unused_mut, unused_variables)]
|
2015-05-18 09:02:24 +02:00
|
|
|
fn main() {
|
2017-02-08 14:58:07 +01:00
|
|
|
let mut x = &mut &mut 1u32;
|
2015-08-11 20:22:20 +02:00
|
|
|
{
|
2017-02-08 14:58:07 +01:00
|
|
|
let mut y = &mut x;
|
2015-08-11 20:22:20 +02:00
|
|
|
}
|
|
|
|
|
2016-06-21 22:54:22 +02:00
|
|
|
if fun(x) {
|
|
|
|
let y : &mut &mut u32 = &mut &mut 2;
|
|
|
|
**y + **x;
|
|
|
|
}
|
|
|
|
|
2015-08-11 20:22:20 +02:00
|
|
|
if fun(x) {
|
|
|
|
let y : &mut &mut &mut u32 = &mut &mut &mut 2;
|
|
|
|
***y + **x;
|
|
|
|
}
|
|
|
|
|
2016-06-05 18:07:12 +02:00
|
|
|
let mut z = mut_ptr!(&mut 3u32);
|
2015-05-18 09:02:24 +02:00
|
|
|
}
|
2016-06-21 22:54:22 +02: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);
|
|
|
|
}
|
|
|
|
}
|