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
|
|
|
#![warn(clippy::all)]
|
|
|
|
#![allow(clippy::boxed_local, clippy::needless_pass_by_value)]
|
|
|
|
#![allow(clippy::blacklisted_name)]
|
2014-11-19 09:57:34 +01:00
|
|
|
|
2016-01-02 17:19:53 +01:00
|
|
|
macro_rules! boxit {
|
|
|
|
($init:expr, $x:ty) => {
|
|
|
|
let _: Box<$x> = Box::new($init);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test_macro() {
|
|
|
|
boxit!(Vec::new(), Vec<u8>);
|
|
|
|
}
|
2017-02-08 14:58:07 +01:00
|
|
|
pub fn test(foo: Box<Vec<bool>>) {
|
2015-01-10 07:26:58 +01:00
|
|
|
println!("{:?}", foo.get(0))
|
2014-11-19 09:57:34 +01:00
|
|
|
}
|
|
|
|
|
2015-05-08 06:01:41 +02:00
|
|
|
pub fn test2(foo: Box<Fn(Vec<u32>)>) { // pass if #31 is fixed
|
2015-08-11 20:22:20 +02:00
|
|
|
foo(vec![1, 2, 3])
|
2015-05-08 06:01:41 +02:00
|
|
|
}
|
|
|
|
|
2017-06-11 18:30:48 +02:00
|
|
|
pub fn test_local_not_linted() {
|
|
|
|
let _: Box<Vec<bool>>;
|
|
|
|
}
|
|
|
|
|
2014-11-19 09:57:34 +01:00
|
|
|
fn main(){
|
2015-01-10 07:26:58 +01:00
|
|
|
test(Box::new(Vec::new()));
|
2015-05-08 06:01:41 +02:00
|
|
|
test2(Box::new(|v| println!("{:?}", v)));
|
2016-01-02 17:19:53 +01:00
|
|
|
test_macro();
|
2017-06-11 18:30:48 +02:00
|
|
|
test_local_not_linted();
|
2015-05-08 06:01:41 +02:00
|
|
|
}
|