rustc/tests/ui/traits/default-method/mut.rs
2025-02-17 11:14:05 +01:00

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() {}