mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 07:04:18 +00:00
25 lines
355 B
Rust
25 lines
355 B
Rust
|
#![feature(plugin)]
|
||
|
#![plugin(clippy)]
|
||
|
|
||
|
#![deny(borrowed_box)]
|
||
|
#![allow(blacklisted_name)]
|
||
|
#![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>
|
||
|
}
|
||
|
|
||
|
fn main(){
|
||
|
test1(&mut Box::new(false));
|
||
|
test2();
|
||
|
}
|