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