mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-24 20:33:23 +00:00
11 lines
150 B
Rust
11 lines
150 B
Rust
//@ check-pass
|
|
#![allow(unused_assignments)]
|
|
|
|
#![allow(unused_variables)]
|
|
|
|
trait Foo {
|
|
fn foo(&self, mut v: isize) { v = 1; }
|
|
}
|
|
|
|
pub fn main() {}
|