]> git.lizzy.rs Git - rust.git/blob - tests/ui/toplevel_ref_arg.rs
Auto merge of #3635 - matthiaskrgr:revert_random_state_3603, r=xfix
[rust.git] / tests / ui / toplevel_ref_arg.rs
1 // Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution.
3 //
4 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
5 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
7 // option. This file may not be copied, modified, or distributed
8 // except according to those terms.
9
10 #![warn(clippy::all)]
11 #![allow(unused)]
12
13 fn the_answer(ref mut x: u8) {
14     *x = 42;
15 }
16
17 fn main() {
18     let mut x = 0;
19     the_answer(x);
20     // Closures should not warn
21     let y = |ref x| println!("{:?}", x);
22     y(1u8);
23
24     let ref x = 1;
25
26     let ref y: (&_, u8) = (&1, 2);
27
28     let ref z = 1 + 2;
29
30     let ref mut z = 1 + 2;
31
32     let (ref x, _) = (1, 2); // okay, not top level
33     println!("The answer is {}.", x);
34 }