blob: 92ce103586c2584bbddc7a40312185888a698178 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// run-rustfix
#![allow(unused_assignments)]
#![allow(unused_variables)]
#![allow(dead_code)]
#![deny(unused_mut)]
struct Foo;
impl Foo {
fn foo(self) {} //~ ERROR: variable does not need to be mutable
fn bar(self: Box<Foo>) {} //~ ERROR: variable does not need to be mutable
}
fn main() {}
|