rust/tests/compile-fail/ptr_arg.rs

21 lines
392 B
Rust
Raw Normal View History

#![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());
}