You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: compiler/rustc_lint/messages.ftl
+1-1
Original file line number
Diff line number
Diff line change
@@ -627,7 +627,7 @@ lint_pattern_in_foreign = patterns aren't allowed in foreign function declaratio
627
627
.label = pattern not allowed in foreign function
628
628
629
629
lint_private_extern_crate_reexport =
630
-
extern crate `{$ident}` is private, and cannot be re-exported (error E0365), consider declaring with `pub`
630
+
extern crate `{$ident}` is private, and cannot be re-exported, consider declaring with `pub`
631
631
632
632
lint_proc_macro_back_compat = using an old version of `{$crate_name}`
633
633
.note = older versions of the `{$crate_name}` crate will stop compiling in future versions of Rust; please update to `{$crate_name}` v{$fixed_version}, or switch to one of the `{$crate_name}` alternatives
borrow of layout constrained field with interior mutability is unsafe and requires unsafe block (error E0133)
338
+
borrow of layout constrained field with interior mutability is unsafe and requires unsafe block
339
339
.note = references to fields of layout constrained fields lose the constraints. Coupled with interior mutability, the field can be changed to invalid values
340
340
.label = borrow of layout constrained field with interior mutability
Copy file name to clipboardexpand all lines: tests/ui/unsafe/unsafe_op_in_unsafe_fn/rfc-2585-unsafe_op_in_unsafe_fn.stderr
+6-6
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
error: call to unsafe function `unsf` is unsafe and requires unsafe block (error E0133)
1
+
error[E0133]: call to unsafe function `unsf` is unsafe and requires unsafe block
2
2
--> $DIR/rfc-2585-unsafe_op_in_unsafe_fn.rs:9:5
3
3
|
4
4
LL | unsf();
@@ -17,7 +17,7 @@ note: the lint level is defined here
17
17
LL | #![deny(unsafe_op_in_unsafe_fn)]
18
18
| ^^^^^^^^^^^^^^^^^^^^^^
19
19
20
-
error: dereference of raw pointer is unsafe and requires unsafe block (error E0133)
20
+
error[E0133]: dereference of raw pointer is unsafe and requires unsafe block
21
21
--> $DIR/rfc-2585-unsafe_op_in_unsafe_fn.rs:11:5
22
22
|
23
23
LL | *PTR;
@@ -26,7 +26,7 @@ LL | *PTR;
26
26
= note: for more information, see issue #71668 <https://github.com/rust-lang/rust/issues/71668>
27
27
= note: raw pointers may be null, dangling or unaligned; they can violate aliasing rules and cause data races: all of these are undefined behavior
28
28
29
-
error: use of mutable static is unsafe and requires unsafe block (error E0133)
29
+
error[E0133]: use of mutable static is unsafe and requires unsafe block
30
30
--> $DIR/rfc-2585-unsafe_op_in_unsafe_fn.rs:13:5
31
31
|
32
32
LL | VOID = ();
@@ -47,7 +47,7 @@ note: the lint level is defined here
47
47
LL | #![deny(unused_unsafe)]
48
48
| ^^^^^^^^^^^^^
49
49
50
-
error: call to unsafe function `unsf` is unsafe and requires unsafe block (error E0133)
50
+
error[E0133]: call to unsafe function `unsf` is unsafe and requires unsafe block
51
51
--> $DIR/rfc-2585-unsafe_op_in_unsafe_fn.rs:24:5
52
52
|
53
53
LL | unsf();
@@ -67,7 +67,7 @@ LL | #[deny(warnings)]
67
67
| ^^^^^^^^
68
68
= note: `#[deny(unsafe_op_in_unsafe_fn)]` implied by `#[deny(warnings)]`
69
69
70
-
error: dereference of raw pointer is unsafe and requires unsafe block (error E0133)
70
+
error[E0133]: dereference of raw pointer is unsafe and requires unsafe block
71
71
--> $DIR/rfc-2585-unsafe_op_in_unsafe_fn.rs:26:5
72
72
|
73
73
LL | *PTR;
@@ -76,7 +76,7 @@ LL | *PTR;
76
76
= note: for more information, see issue #71668 <https://github.com/rust-lang/rust/issues/71668>
77
77
= note: raw pointers may be null, dangling or unaligned; they can violate aliasing rules and cause data races: all of these are undefined behavior
78
78
79
-
error: use of mutable static is unsafe and requires unsafe block (error E0133)
79
+
error[E0133]: use of mutable static is unsafe and requires unsafe block
Copy file name to clipboardexpand all lines: tests/ui/unsafe/unsafe_op_in_unsafe_fn/wrapping-unsafe-block-sugg.stderr
+9-8
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
error: call to unsafe function `unsf` is unsafe and requires unsafe block (error E0133)
1
+
error[E0133]: call to unsafe function `unsf` is unsafe and requires unsafe block
2
2
--> $DIR/wrapping-unsafe-block-sugg.rs:13:5
3
3
|
4
4
LL | unsf();
@@ -17,7 +17,7 @@ note: the lint level is defined here
17
17
LL | #![deny(unsafe_op_in_unsafe_fn)]
18
18
| ^^^^^^^^^^^^^^^^^^^^^^
19
19
20
-
error: call to unsafe function `unsf` is unsafe and requires unsafe block (error E0133)
20
+
error[E0133]: call to unsafe function `unsf` is unsafe and requires unsafe block
21
21
--> $DIR/wrapping-unsafe-block-sugg.rs:17:5
22
22
|
23
23
LL | unsf();
@@ -26,7 +26,7 @@ LL | unsf();
26
26
= note: for more information, see issue #71668 <https://github.com/rust-lang/rust/issues/71668>
27
27
= note: consult the function's documentation for information on how to avoid undefined behavior
28
28
29
-
error: dereference of raw pointer is unsafe and requires unsafe block (error E0133)
29
+
error[E0133]: dereference of raw pointer is unsafe and requires unsafe block
30
30
--> $DIR/wrapping-unsafe-block-sugg.rs:25:13
31
31
|
32
32
LL | let y = *x;
@@ -40,7 +40,7 @@ note: an unsafe function restricts its caller, but its body is safe by default
40
40
LL | pub unsafe fn bar(x: *const i32) -> i32 {
41
41
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
42
42
43
-
error: dereference of raw pointer is unsafe and requires unsafe block (error E0133)
43
+
error[E0133]: dereference of raw pointer is unsafe and requires unsafe block
44
44
--> $DIR/wrapping-unsafe-block-sugg.rs:29:9
45
45
|
46
46
LL | y + *x
@@ -49,7 +49,7 @@ LL | y + *x
49
49
= note: for more information, see issue #71668 <https://github.com/rust-lang/rust/issues/71668>
50
50
= note: raw pointers may be null, dangling or unaligned; they can violate aliasing rules and cause data races: all of these are undefined behavior
51
51
52
-
error: use of mutable static is unsafe and requires unsafe block (error E0133)
52
+
error[E0133]: use of mutable static is unsafe and requires unsafe block
53
53
--> $DIR/wrapping-unsafe-block-sugg.rs:38:13
54
54
|
55
55
LL | let y = BAZ;
@@ -63,7 +63,7 @@ note: an unsafe function restricts its caller, but its body is safe by default
63
63
LL | pub unsafe fn baz() -> i32 {
64
64
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
65
65
66
-
error: use of mutable static is unsafe and requires unsafe block (error E0133)
66
+
error[E0133]: use of mutable static is unsafe and requires unsafe block
67
67
--> $DIR/wrapping-unsafe-block-sugg.rs:42:9
68
68
|
69
69
LL | y + BAZ
@@ -72,7 +72,7 @@ LL | y + BAZ
72
72
= note: for more information, see issue #71668 <https://github.com/rust-lang/rust/issues/71668>
73
73
= note: mutable statics can be mutated by multiple threads: aliasing violations or data races will cause undefined behavior
74
74
75
-
error: call to unsafe function `unsf` is unsafe and requires unsafe block (error E0133)
75
+
error[E0133]: call to unsafe function `unsf` is unsafe and requires unsafe block
0 commit comments