7aee04878f
(Did not touch strings.rs, which is fixed by @llogiq's PR)
21 lines
392 B
Rust
Executable File
21 lines
392 B
Rust
Executable File
#![feature(plugin)]
|
|
#![plugin(clippy)]
|
|
|
|
#[deny(ptr_arg)]
|
|
#[allow(unused)]
|
|
fn do_vec(x: &Vec<i64>) { //~ERROR writing `&Vec<_>` instead of `&[_]`
|
|
//Nothing here
|
|
}
|
|
|
|
#[deny(ptr_arg)]
|
|
#[allow(unused)]
|
|
fn do_str(x: &String) { //~ERROR writing `&String` instead of `&str`
|
|
//Nothing here either
|
|
}
|
|
|
|
fn main() {
|
|
let x = vec![1i64, 2, 3];
|
|
do_vec(&x);
|
|
do_str(&"hello".to_owned());
|
|
}
|