diff options
| author | Eduard-Mihai Burtescu <edy.burt@gmail.com> | 2019-02-05 10:37:28 +0200 |
|---|---|---|
| committer | Eduard-Mihai Burtescu <edy.burt@gmail.com> | 2019-02-14 13:36:51 +0200 |
| commit | f6d1e9790c2d6d8922dc25d03817b93893bfcff8 (patch) | |
| tree | 7635f3ac551cb8296db516d3c617666fe51cabf5 /src/test/ui/error-codes | |
| parent | 732a2dc09577f93c5eb9e4f037f7ce6723d8d7eb (diff) | |
| download | rust-f6d1e9790c2d6d8922dc25d03817b93893bfcff8.tar.gz rust-f6d1e9790c2d6d8922dc25d03817b93893bfcff8.zip | |
rustc_mir: split qualify_consts' checking and value qualification.
Diffstat (limited to 'src/test/ui/error-codes')
| -rw-r--r-- | src/test/ui/error-codes/E0017.nll.stderr | 8 | ||||
| -rw-r--r-- | src/test/ui/error-codes/E0017.stderr | 8 | ||||
| -rw-r--r-- | src/test/ui/error-codes/E0388.nll.stderr | 8 | ||||
| -rw-r--r-- | src/test/ui/error-codes/E0388.stderr | 8 |
4 files changed, 16 insertions, 16 deletions
diff --git a/src/test/ui/error-codes/E0017.nll.stderr b/src/test/ui/error-codes/E0017.nll.stderr index 305e85563eb..0477f06010b 100644 --- a/src/test/ui/error-codes/E0017.nll.stderr +++ b/src/test/ui/error-codes/E0017.nll.stderr @@ -4,17 +4,17 @@ error[E0017]: references in constants may only refer to immutable values LL | const CR: &'static mut i32 = &mut C; //~ ERROR E0017 | ^^^^^^ constants require immutable values -error: cannot mutate statics in the initializer of another static +error[E0017]: references in statics may only refer to immutable values --> $DIR/E0017.rs:5:39 | LL | static STATIC_REF: &'static mut i32 = &mut X; //~ ERROR E0017 - | ^^^^^^ + | ^^^^^^ statics require immutable values -error[E0017]: references in statics may only refer to immutable values +error: cannot mutate statics in the initializer of another static --> $DIR/E0017.rs:5:39 | LL | static STATIC_REF: &'static mut i32 = &mut X; //~ ERROR E0017 - | ^^^^^^ statics require immutable values + | ^^^^^^ error[E0596]: cannot borrow immutable static item `X` as mutable --> $DIR/E0017.rs:5:39 diff --git a/src/test/ui/error-codes/E0017.stderr b/src/test/ui/error-codes/E0017.stderr index 93f5ca55455..cc202ec912e 100644 --- a/src/test/ui/error-codes/E0017.stderr +++ b/src/test/ui/error-codes/E0017.stderr @@ -4,17 +4,17 @@ error[E0017]: references in constants may only refer to immutable values LL | const CR: &'static mut i32 = &mut C; //~ ERROR E0017 | ^^^^^^ constants require immutable values -error: cannot mutate statics in the initializer of another static +error[E0017]: references in statics may only refer to immutable values --> $DIR/E0017.rs:5:39 | LL | static STATIC_REF: &'static mut i32 = &mut X; //~ ERROR E0017 - | ^^^^^^ + | ^^^^^^ statics require immutable values -error[E0017]: references in statics may only refer to immutable values +error: cannot mutate statics in the initializer of another static --> $DIR/E0017.rs:5:39 | LL | static STATIC_REF: &'static mut i32 = &mut X; //~ ERROR E0017 - | ^^^^^^ statics require immutable values + | ^^^^^^ error[E0596]: cannot borrow immutable static item as mutable --> $DIR/E0017.rs:5:44 diff --git a/src/test/ui/error-codes/E0388.nll.stderr b/src/test/ui/error-codes/E0388.nll.stderr index 2bcda2ba8fb..a898d60a985 100644 --- a/src/test/ui/error-codes/E0388.nll.stderr +++ b/src/test/ui/error-codes/E0388.nll.stderr @@ -4,17 +4,17 @@ error[E0017]: references in constants may only refer to immutable values LL | const CR: &'static mut i32 = &mut C; //~ ERROR E0017 | ^^^^^^ constants require immutable values -error: cannot mutate statics in the initializer of another static +error[E0017]: references in statics may only refer to immutable values --> $DIR/E0388.rs:5:39 | LL | static STATIC_REF: &'static mut i32 = &mut X; //~ ERROR E0017 - | ^^^^^^ + | ^^^^^^ statics require immutable values -error[E0017]: references in statics may only refer to immutable values +error: cannot mutate statics in the initializer of another static --> $DIR/E0388.rs:5:39 | LL | static STATIC_REF: &'static mut i32 = &mut X; //~ ERROR E0017 - | ^^^^^^ statics require immutable values + | ^^^^^^ error[E0596]: cannot borrow immutable static item `X` as mutable --> $DIR/E0388.rs:5:39 diff --git a/src/test/ui/error-codes/E0388.stderr b/src/test/ui/error-codes/E0388.stderr index f35d39c7bb2..f641830ae9f 100644 --- a/src/test/ui/error-codes/E0388.stderr +++ b/src/test/ui/error-codes/E0388.stderr @@ -4,17 +4,17 @@ error[E0017]: references in constants may only refer to immutable values LL | const CR: &'static mut i32 = &mut C; //~ ERROR E0017 | ^^^^^^ constants require immutable values -error: cannot mutate statics in the initializer of another static +error[E0017]: references in statics may only refer to immutable values --> $DIR/E0388.rs:5:39 | LL | static STATIC_REF: &'static mut i32 = &mut X; //~ ERROR E0017 - | ^^^^^^ + | ^^^^^^ statics require immutable values -error[E0017]: references in statics may only refer to immutable values +error: cannot mutate statics in the initializer of another static --> $DIR/E0388.rs:5:39 | LL | static STATIC_REF: &'static mut i32 = &mut X; //~ ERROR E0017 - | ^^^^^^ statics require immutable values + | ^^^^^^ error[E0596]: cannot borrow immutable static item as mutable --> $DIR/E0388.rs:5:44 |
