Skip to content

Commit c1494d6

Browse files
Bless tests
1 parent 77e6c56 commit c1494d6

File tree

4 files changed

+17
-25
lines changed

4 files changed

+17
-25
lines changed
+4-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
#![feature(raw_ref_op)]
22

3-
const A: () = { let mut x = 2; &raw mut x; }; //~ ERROR `&raw mut` is not allowed
3+
const A: () = { let mut x = 2; &raw mut x; }; //~ mutable reference
44

5-
static B: () = { let mut x = 2; &raw mut x; }; //~ ERROR `&raw mut` is not allowed
5+
static B: () = { let mut x = 2; &raw mut x; }; //~ mutable reference
66

7-
static mut C: () = { let mut x = 2; &raw mut x; }; //~ ERROR `&raw mut` is not allowed
7+
static mut C: () = { let mut x = 2; &raw mut x; }; //~ mutable reference
88

99
const fn foo() {
1010
let mut x = 0;
11-
let y = &raw mut x; //~ ERROR `&raw mut` is not allowed
11+
let y = &raw mut x; //~ mutable reference
1212
}
1313

1414
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,22 @@
1-
error[E0658]: `&raw mut` is not allowed in constants
1+
error[E0764]: raw mutable references are not allowed in constants
22
--> $DIR/const-address-of-mut.rs:3:32
33
|
44
LL | const A: () = { let mut x = 2; &raw mut x; };
5-
| ^^^^^^^^^^
6-
|
7-
= note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
8-
= help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
5+
| ^^^^^^^^^^ `&raw mut` is only allowed in `const fn`
96

10-
error[E0658]: `&raw mut` is not allowed in statics
7+
error[E0764]: raw mutable references are not allowed in statics
118
--> $DIR/const-address-of-mut.rs:5:33
129
|
1310
LL | static B: () = { let mut x = 2; &raw mut x; };
14-
| ^^^^^^^^^^
15-
|
16-
= note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
17-
= help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
11+
| ^^^^^^^^^^ `&raw mut` is only allowed in `const fn`
1812

19-
error[E0658]: `&raw mut` is not allowed in statics
13+
error[E0764]: raw mutable references are not allowed in statics
2014
--> $DIR/const-address-of-mut.rs:7:37
2115
|
2216
LL | static mut C: () = { let mut x = 2; &raw mut x; };
23-
| ^^^^^^^^^^
24-
|
25-
= note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
26-
= help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
17+
| ^^^^^^^^^^ `&raw mut` is only allowed in `const fn`
2718

28-
error[E0658]: `&raw mut` is not allowed in constant functions
19+
error[E0658]: raw mutable references are not allowed in constant functions
2920
--> $DIR/const-address-of-mut.rs:11:13
3021
|
3122
LL | let y = &raw mut x;
@@ -36,4 +27,5 @@ LL | let y = &raw mut x;
3627

3728
error: aborting due to 4 previous errors
3829

39-
For more information about this error, try `rustc --explain E0658`.
30+
Some errors have detailed explanations: E0658, E0764.
31+
For more information about an error, try `rustc --explain E0658`.

src/test/ui/consts/min_const_fn/address_of.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
const fn mutable_address_of_in_const() {
44
let mut a = 0;
5-
let b = &raw mut a; //~ ERROR `&raw mut` is not allowed
5+
let b = &raw mut a; //~ ERROR mutable reference
66
}
77

88
struct X;
99

1010
impl X {
1111
const fn inherent_mutable_address_of_in_const() {
1212
let mut a = 0;
13-
let b = &raw mut a; //~ ERROR `&raw mut` is not allowed
13+
let b = &raw mut a; //~ ERROR mutable reference
1414
}
1515
}
1616

src/test/ui/consts/min_const_fn/address_of.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error[E0658]: `&raw mut` is not allowed in constant functions
1+
error[E0658]: raw mutable references are not allowed in constant functions
22
--> $DIR/address_of.rs:5:13
33
|
44
LL | let b = &raw mut a;
@@ -7,7 +7,7 @@ LL | let b = &raw mut a;
77
= note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
88
= help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
99

10-
error[E0658]: `&raw mut` is not allowed in constant functions
10+
error[E0658]: raw mutable references are not allowed in constant functions
1111
--> $DIR/address_of.rs:13:17
1212
|
1313
LL | let b = &raw mut a;

0 commit comments

Comments
 (0)