#![feature(plugin)] #![plugin(clippy)] #![allow(unused)] #![deny(ptr_arg)] fn do_vec(x: &Vec) { //Nothing here } fn do_vec_mut(x: &mut Vec) { // no error here //Nothing here } fn do_str(x: &String) { //Nothing here either } fn do_str_mut(x: &mut String) { // no error here //Nothing here either } fn main() { } trait Foo { type Item; fn do_vec(x: &Vec); fn do_item(x: &Self::Item); } struct Bar; // no error, in trait impl (#425) impl Foo for Bar { type Item = Vec; fn do_vec(x: &Vec) {} fn do_item(x: &Vec) {} }