mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-17 05:37:46 +00:00
12 lines
183 B
Rust
12 lines
183 B
Rust
//@ 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() {}
|