]> git.lizzy.rs Git - rust.git/blob - tests/ui/toplevel_ref_arg.rs
Merge remote-tracking branch 'upstream/master'
[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
11
12
13
14 #![warn(clippy::all)]
15 #![allow(unused)]
16
17 fn the_answer(ref mut x: u8) {
18   *x = 42;
19 }
20
21 fn main() {
22   let mut x = 0;
23   the_answer(x);
24   // Closures should not warn
25   let y = |ref x| { println!("{:?}", x) };
26   y(1u8);
27
28   let ref x = 1;
29
30   let ref y: (&_, u8) = (&1, 2);
31
32   let ref z = 1 + 2;
33
34   let ref mut z = 1 + 2;
35
36   let (ref x, _) = (1,2); // okay, not top level
37   println!("The answer is {}.", x);
38 }