blob: 5f8e983b09cfb8e6b00d95aa62c63b421716ee74 [file] [log] [blame]
// run-pass
#![allow(unused_assignments)]
// pretty-expanded FIXME #23616
#![allow(unused_variables)]
trait Foo {
fn foo(&self, mut v: isize) { v = 1; }
}
pub fn main() {}