blob: 1130ca0b4be2555395a634555b65cd69c278f1bb [file] [log] [blame]
//@ check-pass
#![allow(unused_assignments)]
#![allow(unused_variables)]
trait Foo {
fn foo(&self, mut v: isize) { v = 1; }
}
pub fn main() {}