
Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
10 lines
150 B
Rust
10 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() {}
|