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