]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/assign-imm-local-twice.rs
Merge commit 'b7f3f7f6082679da2da9a0b3faf1b5adef3afd3b' into clippyup
[rust.git] / src / test / ui / assign-imm-local-twice.rs
index c1c9bf62819af5b6fcb258df381f2a3de3927b3d..b50f6ab5deb1569624f34c9bfddcb90e72be94be 100644 (file)
@@ -1,6 +1,6 @@
 fn test() {
     let v: isize;
-    //~^ HELP make this binding mutable
+    //~^ HELP consider making this binding mutable
     //~| SUGGESTION mut v
     v = 1; //~ NOTE first assignment
     println!("v={}", v);