]> git.lizzy.rs Git - rust.git/blob - tests/ui/box_vec.rs
Auto merge of #3635 - matthiaskrgr:revert_random_state_3603, r=xfix
[rust.git] / tests / ui / box_vec.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(clippy::boxed_local, clippy::needless_pass_by_value)]
12 #![allow(clippy::blacklisted_name)]
13
14 macro_rules! boxit {
15     ($init:expr, $x:ty) => {
16         let _: Box<$x> = Box::new($init);
17     };
18 }
19
20 fn test_macro() {
21     boxit!(Vec::new(), Vec<u8>);
22 }
23 pub fn test(foo: Box<Vec<bool>>) {
24     println!("{:?}", foo.get(0))
25 }
26
27 pub fn test2(foo: Box<Fn(Vec<u32>)>) {
28     // pass if #31 is fixed
29     foo(vec![1, 2, 3])
30 }
31
32 pub fn test_local_not_linted() {
33     let _: Box<Vec<bool>>;
34 }
35
36 fn main() {
37     test(Box::new(Vec::new()));
38     test2(Box::new(|v| println!("{:?}", v)));
39     test_macro();
40     test_local_not_linted();
41 }