mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-03 13:37:37 +00:00
Update the existing compile-fail tests to reflect diagnostic changes in NLL.
This commit is contained in:
parent
35971ccc41
commit
a32fca71ed
@ -13,6 +13,7 @@
|
||||
|
||||
fn test() {
|
||||
let v: isize;
|
||||
//[mir]~^ NOTE consider changing this to `mut v`
|
||||
v = 1; //[ast]~ NOTE first assignment
|
||||
//[mir]~^ NOTE first assignment
|
||||
println!("v={}", v);
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
fn test_drop_replace() {
|
||||
let b: Box<isize>;
|
||||
//[mir]~^ NOTE consider changing this to `mut b`
|
||||
b = Box::new(1); //[ast]~ NOTE first assignment
|
||||
//[mir]~^ NOTE first assignment
|
||||
b = Box::new(2); //[ast]~ ERROR cannot assign twice to immutable variable
|
||||
@ -24,6 +25,7 @@ fn test_drop_replace() {
|
||||
fn test_call() {
|
||||
let b = Box::new(1); //[ast]~ NOTE first assignment
|
||||
//[mir]~^ NOTE first assignment
|
||||
//[mir]~| NOTE consider changing this to `mut b`
|
||||
b = Box::new(2); //[ast]~ ERROR cannot assign twice to immutable variable
|
||||
//[mir]~^ ERROR cannot assign twice to immutable variable `b`
|
||||
//[ast]~| NOTE cannot assign twice to immutable
|
||||
@ -31,7 +33,7 @@ fn test_call() {
|
||||
}
|
||||
|
||||
fn test_args(b: Box<i32>) { //[ast]~ NOTE first assignment
|
||||
//[mir]~^ NOTE argument not declared as `mut`
|
||||
//[mir]~^ NOTE consider changing this to `mut b`
|
||||
b = Box::new(2); //[ast]~ ERROR cannot assign twice to immutable variable
|
||||
//[mir]~^ ERROR cannot assign to immutable argument `b`
|
||||
//[ast]~| NOTE cannot assign twice to immutable
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
fn test() {
|
||||
let v: isize;
|
||||
//[mir]~^ NOTE consider changing this to `mut v`
|
||||
loop {
|
||||
v = 1; //[ast]~ ERROR cannot assign twice to immutable variable
|
||||
//[mir]~^ ERROR cannot assign twice to immutable variable `v`
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
fn test() {
|
||||
let v: isize;
|
||||
//[mir]~^ NOTE consider changing this to `mut v`
|
||||
v = 2; //[ast]~ NOTE first assignment
|
||||
//[mir]~^ NOTE first assignment
|
||||
v += 1; //[ast]~ ERROR cannot assign twice to immutable variable
|
||||
|
@ -14,6 +14,7 @@
|
||||
fn test() {
|
||||
let b = Box::new(1); //[ast]~ NOTE first assignment
|
||||
//[mir]~^ NOTE first assignment
|
||||
//[mir]~| NOTE consider changing this to `mut b`
|
||||
drop(b);
|
||||
b = Box::new(2); //[ast]~ ERROR cannot assign twice to immutable variable
|
||||
//[mir]~^ ERROR cannot assign twice to immutable variable `b`
|
||||
|
@ -14,6 +14,7 @@
|
||||
fn test() {
|
||||
let v: isize = 1; //[ast]~ NOTE first assignment
|
||||
//[mir]~^ NOTE first assignment
|
||||
//[mir]~| NOTE consider changing this to `mut v`
|
||||
v.clone();
|
||||
v = 2; //[ast]~ ERROR cannot assign twice to immutable variable
|
||||
//[mir]~^ ERROR cannot assign twice to immutable variable `v`
|
||||
|
Loading…
Reference in New Issue
Block a user