blob: fd8b788035f87187c21bae7c6a1a75a690b0a209 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//@ 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() {}
|