2015-05-04 06:15:24 +00:00
|
|
|
#![feature(plugin)]
|
|
|
|
#![plugin(clippy)]
|
2015-08-21 16:28:17 +00:00
|
|
|
#![allow(unused)]
|
|
|
|
#![deny(ptr_arg)]
|
2015-05-04 06:15:24 +00:00
|
|
|
|
2015-08-13 06:12:07 +00:00
|
|
|
fn do_vec(x: &Vec<i64>) { //~ERROR writing `&Vec<_>` instead of `&[_]`
|
2015-08-11 18:22:20 +00:00
|
|
|
//Nothing here
|
2015-05-04 06:15:24 +00:00
|
|
|
}
|
|
|
|
|
2015-08-21 16:28:17 +00:00
|
|
|
fn do_vec_mut(x: &mut Vec<i64>) { // no error here
|
|
|
|
//Nothing here
|
|
|
|
}
|
|
|
|
|
2015-08-13 06:12:07 +00:00
|
|
|
fn do_str(x: &String) { //~ERROR writing `&String` instead of `&str`
|
2015-08-11 18:22:20 +00:00
|
|
|
//Nothing here either
|
2015-05-04 06:15:24 +00:00
|
|
|
}
|
|
|
|
|
2015-08-21 16:28:17 +00:00
|
|
|
fn do_str_mut(x: &mut String) { // no error here
|
|
|
|
//Nothing here either
|
|
|
|
}
|
|
|
|
|
2015-05-04 06:15:24 +00:00
|
|
|
fn main() {
|
|
|
|
}
|