// 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 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. #![warn(clippy::all)] #![allow(clippy::boxed_local, clippy::needless_pass_by_value)] #![allow(clippy::blacklisted_name)] macro_rules! boxit { ($init:expr, $x:ty) => { let _: Box<$x> = Box::new($init); } } fn test_macro() { boxit!(Vec::new(), Vec); } pub fn test(foo: Box>) { println!("{:?}", foo.get(0)) } pub fn test2(foo: Box)>) { // pass if #31 is fixed foo(vec![1, 2, 3]) } pub fn test_local_not_linted() { let _: Box>; } fn main(){ test(Box::new(Vec::new())); test2(Box::new(|v| println!("{:?}", v))); test_macro(); test_local_not_linted(); }