2018-07-28 15:34:52 +00:00
|
|
|
#![feature(tool_lints)]
|
2017-09-18 10:47:33 +00:00
|
|
|
|
|
|
|
|
2018-07-28 15:34:52 +00:00
|
|
|
#![deny(clippy::borrowed_box)]
|
|
|
|
#![allow(clippy::blacklisted_name)]
|
2017-06-11 03:50:57 +00:00
|
|
|
#![allow(unused_variables)]
|
|
|
|
#![allow(dead_code)]
|
|
|
|
|
|
|
|
pub fn test1(foo: &mut Box<bool>) {
|
|
|
|
println!("{:?}", foo)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn test2() {
|
|
|
|
let foo: &Box<bool>;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Test3<'a> {
|
|
|
|
foo: &'a Box<bool>
|
|
|
|
}
|
|
|
|
|
2017-06-12 12:44:08 +00:00
|
|
|
trait Test4 {
|
|
|
|
fn test4(a: &Box<bool>);
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> Test4 for Test3<'a> {
|
|
|
|
fn test4(a: &Box<bool>) {
|
|
|
|
unimplemented!();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-14 20:04:56 +00:00
|
|
|
use std::any::Any;
|
|
|
|
|
|
|
|
pub fn test5(foo: &mut Box<Any>) {
|
|
|
|
println!("{:?}", foo)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn test6() {
|
|
|
|
let foo: &Box<Any>;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Test7<'a> {
|
|
|
|
foo: &'a Box<Any>
|
|
|
|
}
|
|
|
|
|
|
|
|
trait Test8 {
|
|
|
|
fn test8(a: &Box<Any>);
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> Test8 for Test7<'a> {
|
|
|
|
fn test8(a: &Box<Any>) {
|
|
|
|
unimplemented!();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn test9(foo: &mut Box<Any + Send + Sync>) {
|
|
|
|
let _ = foo;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn test10() {
|
|
|
|
let foo: &Box<Any + Send + 'static>;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Test11<'a> {
|
|
|
|
foo: &'a Box<Any + Send>
|
|
|
|
}
|
|
|
|
|
|
|
|
trait Test12 {
|
|
|
|
fn test4(a: &Box<Any + 'static>);
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> Test12 for Test11<'a> {
|
|
|
|
fn test4(a: &Box<Any + 'static>) {
|
|
|
|
unimplemented!();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-11 03:50:57 +00:00
|
|
|
fn main(){
|
|
|
|
test1(&mut Box::new(false));
|
|
|
|
test2();
|
2017-08-14 20:04:56 +00:00
|
|
|
test5(&mut (Box::new(false) as Box<Any>));
|
|
|
|
test6();
|
|
|
|
test9(&mut (Box::new(false) as Box<Any + Send + Sync>));
|
|
|
|
test10();
|
2017-06-11 03:50:57 +00:00
|
|
|
}
|