Use more accurate span for addr_of! suggestion

Use a multipart suggestion instead of a single whole-span replacement:

```
error[E0796]: creating a shared reference to a mutable static
  --> $DIR/reference-to-mut-static-unsafe-fn.rs:10:18
   |
LL |         let _y = &X;
   |                  ^^ shared reference to mutable static
   |
   = note: this shared reference has lifetime `'static`, but if the static ever gets mutated, or a mutable reference is created, then any further use of this shared reference is Undefined Behavior
help: use `addr_of!` instead to create a raw pointer
   |
LL |         let _y = addr_of!(X);
   |                  ~~~~~~~~~ +
```
This commit is contained in:
Esteban Küber 2024-07-11 20:12:48 +00:00
parent 5753b30676
commit abf92c049d
21 changed files with 74 additions and 91 deletions

View File

@ -1,5 +1,4 @@
use rustc_hir as hir; use rustc_hir as hir;
use rustc_hir_pretty::qpath_to_string;
use rustc_lint_defs::builtin::STATIC_MUT_REFS; use rustc_lint_defs::builtin::STATIC_MUT_REFS;
use rustc_middle::ty::{Mutability, TyCtxt}; use rustc_middle::ty::{Mutability, TyCtxt};
use rustc_span::Span; use rustc_span::Span;
@ -12,9 +11,17 @@ pub fn maybe_expr_static_mut(tcx: TyCtxt<'_>, expr: hir::Expr<'_>) {
let hir_id = expr.hir_id; let hir_id = expr.hir_id;
if let hir::ExprKind::AddrOf(borrow_kind, m, expr) = expr.kind if let hir::ExprKind::AddrOf(borrow_kind, m, expr) = expr.kind
&& matches!(borrow_kind, hir::BorrowKind::Ref) && matches!(borrow_kind, hir::BorrowKind::Ref)
&& let Some(var) = path_if_static_mut(tcx, expr) && path_if_static_mut(expr)
{ {
handle_static_mut_ref(tcx, span, var, span.edition().at_least_rust_2024(), m, hir_id); handle_static_mut_ref(
tcx,
span,
span.with_hi(expr.span.lo()),
span.shrink_to_hi(),
span.edition().at_least_rust_2024(),
m,
hir_id,
);
} }
} }
@ -24,12 +31,13 @@ pub fn maybe_stmt_static_mut(tcx: TyCtxt<'_>, stmt: hir::Stmt<'_>) {
&& let hir::PatKind::Binding(ba, _, _, _) = loc.pat.kind && let hir::PatKind::Binding(ba, _, _, _) = loc.pat.kind
&& let hir::ByRef::Yes(rmutbl) = ba.0 && let hir::ByRef::Yes(rmutbl) = ba.0
&& let Some(init) = loc.init && let Some(init) = loc.init
&& let Some(var) = path_if_static_mut(tcx, init) && path_if_static_mut(init)
{ {
handle_static_mut_ref( handle_static_mut_ref(
tcx, tcx,
init.span, init.span,
var, init.span.shrink_to_lo(),
init.span.shrink_to_hi(),
loc.span.edition().at_least_rust_2024(), loc.span.edition().at_least_rust_2024(),
rmutbl, rmutbl,
stmt.hir_id, stmt.hir_id,
@ -37,38 +45,39 @@ pub fn maybe_stmt_static_mut(tcx: TyCtxt<'_>, stmt: hir::Stmt<'_>) {
} }
} }
fn path_if_static_mut(tcx: TyCtxt<'_>, expr: &hir::Expr<'_>) -> Option<String> { fn path_if_static_mut(expr: &hir::Expr<'_>) -> bool {
if let hir::ExprKind::Path(qpath) = expr.kind if let hir::ExprKind::Path(qpath) = expr.kind
&& let hir::QPath::Resolved(_, path) = qpath && let hir::QPath::Resolved(_, path) = qpath
&& let hir::def::Res::Def(def_kind, _) = path.res && let hir::def::Res::Def(def_kind, _) = path.res
&& let hir::def::DefKind::Static { safety: _, mutability: Mutability::Mut, nested: false } = && let hir::def::DefKind::Static { safety: _, mutability: Mutability::Mut, nested: false } =
def_kind def_kind
{ {
return Some(qpath_to_string(&tcx, &qpath)); return true;
} }
None false
} }
fn handle_static_mut_ref( fn handle_static_mut_ref(
tcx: TyCtxt<'_>, tcx: TyCtxt<'_>,
span: Span, span: Span,
var: String, lo: Span,
hi: Span,
e2024: bool, e2024: bool,
mutable: Mutability, mutable: Mutability,
hir_id: hir::HirId, hir_id: hir::HirId,
) { ) {
if e2024 { if e2024 {
let (sugg, shared) = if mutable == Mutability::Mut { let (sugg, shared) = if mutable == Mutability::Mut {
(errors::StaticMutRefSugg::Mut { span, var }, "mutable") (errors::MutRefSugg::Mut { lo, hi }, "mutable")
} else { } else {
(errors::StaticMutRefSugg::Shared { span, var }, "shared") (errors::MutRefSugg::Shared { lo, hi }, "shared")
}; };
tcx.dcx().emit_err(errors::StaticMutRef { span, sugg, shared }); tcx.dcx().emit_err(errors::StaticMutRef { span, sugg, shared });
} else { } else {
let (sugg, shared) = if mutable == Mutability::Mut { let (sugg, shared) = if mutable == Mutability::Mut {
(errors::RefOfMutStaticSugg::Mut { span, var }, "mutable") (errors::MutRefSugg::Mut { lo, hi }, "mutable")
} else { } else {
(errors::RefOfMutStaticSugg::Shared { span, var }, "shared") (errors::MutRefSugg::Shared { lo, hi }, "shared")
}; };
tcx.emit_node_span_lint( tcx.emit_node_span_lint(
STATIC_MUT_REFS, STATIC_MUT_REFS,

View File

@ -1500,33 +1500,33 @@ pub struct StaticMutRef<'a> {
#[label] #[label]
pub span: Span, pub span: Span,
#[subdiagnostic] #[subdiagnostic]
pub sugg: StaticMutRefSugg, pub sugg: MutRefSugg,
pub shared: &'a str, pub shared: &'a str,
} }
#[derive(Subdiagnostic)] #[derive(Subdiagnostic)]
pub enum StaticMutRefSugg { pub enum MutRefSugg {
#[suggestion( #[multipart_suggestion(
hir_analysis_suggestion, hir_analysis_suggestion,
style = "verbose", style = "verbose",
code = "addr_of!({var})",
applicability = "maybe-incorrect" applicability = "maybe-incorrect"
)] )]
Shared { Shared {
#[primary_span] #[suggestion_part(code = "addr_of!(")]
span: Span, lo: Span,
var: String, #[suggestion_part(code = ")")]
hi: Span,
}, },
#[suggestion( #[multipart_suggestion(
hir_analysis_suggestion_mut, hir_analysis_suggestion_mut,
style = "verbose", style = "verbose",
code = "addr_of_mut!({var})",
applicability = "maybe-incorrect" applicability = "maybe-incorrect"
)] )]
Mut { Mut {
#[primary_span] #[suggestion_part(code = "addr_of_mut!(")]
span: Span, lo: Span,
var: String, #[suggestion_part(code = ")")]
hi: Span,
}, },
} }
@ -1539,36 +1539,10 @@ pub struct RefOfMutStatic<'a> {
#[label] #[label]
pub span: Span, pub span: Span,
#[subdiagnostic] #[subdiagnostic]
pub sugg: RefOfMutStaticSugg, pub sugg: MutRefSugg,
pub shared: &'a str, pub shared: &'a str,
} }
#[derive(Subdiagnostic)]
pub enum RefOfMutStaticSugg {
#[suggestion(
hir_analysis_suggestion,
style = "verbose",
code = "addr_of!({var})",
applicability = "maybe-incorrect"
)]
Shared {
#[primary_span]
span: Span,
var: String,
},
#[suggestion(
hir_analysis_suggestion_mut,
style = "verbose",
code = "addr_of_mut!({var})",
applicability = "maybe-incorrect"
)]
Mut {
#[primary_span]
span: Span,
var: String,
},
}
#[derive(Diagnostic)] #[derive(Diagnostic)]
#[diag(hir_analysis_not_supported_delegation)] #[diag(hir_analysis_not_supported_delegation)]
pub struct NotSupportedDelegation<'a> { pub struct NotSupportedDelegation<'a> {

View File

@ -11,7 +11,7 @@ LL | static_bound(&rust_dbg_static_mut);
help: use `addr_of!` instead to create a raw pointer help: use `addr_of!` instead to create a raw pointer
| |
LL | static_bound(addr_of!(rust_dbg_static_mut)); LL | static_bound(addr_of!(rust_dbg_static_mut));
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ~~~~~~~~~ +
warning: creating a mutable reference to mutable static is discouraged warning: creating a mutable reference to mutable static is discouraged
--> $DIR/static-mut-foreign.rs:33:22 --> $DIR/static-mut-foreign.rs:33:22
@ -25,7 +25,7 @@ LL | static_bound_set(&mut rust_dbg_static_mut);
help: use `addr_of_mut!` instead to create a raw pointer help: use `addr_of_mut!` instead to create a raw pointer
| |
LL | static_bound_set(addr_of_mut!(rust_dbg_static_mut)); LL | static_bound_set(addr_of_mut!(rust_dbg_static_mut));
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ~~~~~~~~~~~~~ +
warning: 2 warnings emitted warning: 2 warnings emitted

View File

@ -11,7 +11,7 @@ LL | let _y2 = &mut static_x_mut;
help: use `addr_of_mut!` instead to create a raw pointer help: use `addr_of_mut!` instead to create a raw pointer
| |
LL | let _y2 = addr_of_mut!(static_x_mut); LL | let _y2 = addr_of_mut!(static_x_mut);
| ~~~~~~~~~~~~~~~~~~~~~~~~~~ | ~~~~~~~~~~~~~ +
error[E0596]: cannot borrow `x` as mutable, as it is not declared as mutable error[E0596]: cannot borrow `x` as mutable, as it is not declared as mutable
--> $DIR/borrowck-access-permissions.rs:10:19 --> $DIR/borrowck-access-permissions.rs:10:19

View File

@ -11,7 +11,7 @@ LL | let sfoo: *mut Foo = &mut SFOO;
help: use `addr_of_mut!` instead to create a raw pointer help: use `addr_of_mut!` instead to create a raw pointer
| |
LL | let sfoo: *mut Foo = addr_of_mut!(SFOO); LL | let sfoo: *mut Foo = addr_of_mut!(SFOO);
| ~~~~~~~~~~~~~~~~~~ | ~~~~~~~~~~~~~ +
warning: 1 warning emitted warning: 1 warning emitted

View File

@ -11,7 +11,7 @@ LL | unsafe { &mut GLOBAL_MUT_T }
help: use `addr_of_mut!` instead to create a raw pointer help: use `addr_of_mut!` instead to create a raw pointer
| |
LL | unsafe { addr_of_mut!(GLOBAL_MUT_T) } LL | unsafe { addr_of_mut!(GLOBAL_MUT_T) }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~ | ~~~~~~~~~~~~~ +
error[E0507]: cannot move out of a mutable reference error[E0507]: cannot move out of a mutable reference
--> $DIR/issue-20801.rs:27:22 --> $DIR/issue-20801.rs:27:22

View File

@ -11,7 +11,7 @@ LL | c1(&mut Y);
help: use `addr_of_mut!` instead to create a raw pointer help: use `addr_of_mut!` instead to create a raw pointer
| |
LL | c1(addr_of_mut!(Y)); LL | c1(addr_of_mut!(Y));
| ~~~~~~~~~~~~~~~ | ~~~~~~~~~~~~~ +
warning: creating a mutable reference to mutable static is discouraged warning: creating a mutable reference to mutable static is discouraged
--> $DIR/issue-55492-borrowck-migrate-scans-parents.rs:27:16 --> $DIR/issue-55492-borrowck-migrate-scans-parents.rs:27:16
@ -25,7 +25,7 @@ LL | c1(&mut Z);
help: use `addr_of_mut!` instead to create a raw pointer help: use `addr_of_mut!` instead to create a raw pointer
| |
LL | c1(addr_of_mut!(Z)); LL | c1(addr_of_mut!(Z));
| ~~~~~~~~~~~~~~~ | ~~~~~~~~~~~~~ +
warning: creating a mutable reference to mutable static is discouraged warning: creating a mutable reference to mutable static is discouraged
--> $DIR/issue-55492-borrowck-migrate-scans-parents.rs:64:37 --> $DIR/issue-55492-borrowck-migrate-scans-parents.rs:64:37
@ -39,7 +39,7 @@ LL | borrowck_closures_unique::e(&mut X);
help: use `addr_of_mut!` instead to create a raw pointer help: use `addr_of_mut!` instead to create a raw pointer
| |
LL | borrowck_closures_unique::e(addr_of_mut!(X)); LL | borrowck_closures_unique::e(addr_of_mut!(X));
| ~~~~~~~~~~~~~~~ | ~~~~~~~~~~~~~ +
error[E0594]: cannot assign to `x`, as it is not declared as mutable error[E0594]: cannot assign to `x`, as it is not declared as mutable
--> $DIR/issue-55492-borrowck-migrate-scans-parents.rs:9:46 --> $DIR/issue-55492-borrowck-migrate-scans-parents.rs:9:46

View File

@ -11,7 +11,7 @@ LL | let ptr = unsafe { &mut BB };
help: use `addr_of_mut!` instead to create a raw pointer help: use `addr_of_mut!` instead to create a raw pointer
| |
LL | let ptr = unsafe { addr_of_mut!(BB) }; LL | let ptr = unsafe { addr_of_mut!(BB) };
| ~~~~~~~~~~~~~~~~ | ~~~~~~~~~~~~~ +
warning: 1 warning emitted warning: 1 warning emitted

View File

@ -11,7 +11,7 @@ LL | (mem::size_of_val(&trails) * 8) as u32
help: use `addr_of!` instead to create a raw pointer help: use `addr_of!` instead to create a raw pointer
| |
LL | (mem::size_of_val(addr_of!(trails)) * 8) as u32 LL | (mem::size_of_val(addr_of!(trails)) * 8) as u32
| ~~~~~~~~~~~~~~~~ | ~~~~~~~~~ +
warning: 1 warning emitted warning: 1 warning emitted

View File

@ -11,7 +11,7 @@ LL | (mem::size_of_val(&trails) * 8) as u32
help: use `addr_of!` instead to create a raw pointer help: use `addr_of!` instead to create a raw pointer
| |
LL | (mem::size_of_val(addr_of!(trails)) * 8) as u32 LL | (mem::size_of_val(addr_of!(trails)) * 8) as u32
| ~~~~~~~~~~~~~~~~ | ~~~~~~~~~ +
warning: 1 warning emitted warning: 1 warning emitted

View File

@ -19,7 +19,7 @@ LL | println!("{:p}", unsafe { &symbol });
help: use `addr_of!` instead to create a raw pointer help: use `addr_of!` instead to create a raw pointer
| |
LL | println!("{:p}", unsafe { addr_of!(symbol) }); LL | println!("{:p}", unsafe { addr_of!(symbol) });
| ~~~~~~~~~~~~~~~~ | ~~~~~~~~~ +
error: aborting due to 1 previous error; 1 warning emitted error: aborting due to 1 previous error; 1 warning emitted

View File

@ -11,7 +11,7 @@ LL | S1 { a: unsafe { &mut X1 } }
help: use `addr_of_mut!` instead to create a raw pointer help: use `addr_of_mut!` instead to create a raw pointer
| |
LL | S1 { a: unsafe { addr_of_mut!(X1) } } LL | S1 { a: unsafe { addr_of_mut!(X1) } }
| ~~~~~~~~~~~~~~~~ | ~~~~~~~~~~~~~ +
warning: 1 warning emitted warning: 1 warning emitted

View File

@ -11,7 +11,7 @@ LL | let _x = &X;
help: use `addr_of!` instead to create a raw pointer help: use `addr_of!` instead to create a raw pointer
| |
LL | let _x = addr_of!(X); LL | let _x = addr_of!(X);
| ~~~~~~~~~~~ | ~~~~~~~~~ +
error[E0133]: use of mutable static is unsafe and requires unsafe function or block error[E0133]: use of mutable static is unsafe and requires unsafe function or block
--> $DIR/reference-to-mut-static-safe.rs:9:15 --> $DIR/reference-to-mut-static-safe.rs:9:15

View File

@ -8,7 +8,7 @@ LL | let _x = &X;
help: use `addr_of!` instead to create a raw pointer help: use `addr_of!` instead to create a raw pointer
| |
LL | let _x = addr_of!(X); LL | let _x = addr_of!(X);
| ~~~~~~~~~~~ | ~~~~~~~~~ +
error[E0133]: use of mutable static is unsafe and requires unsafe block error[E0133]: use of mutable static is unsafe and requires unsafe block
--> $DIR/reference-to-mut-static-safe.rs:9:15 --> $DIR/reference-to-mut-static-safe.rs:9:15

View File

@ -8,7 +8,7 @@ LL | let _y = &X;
help: use `addr_of!` instead to create a raw pointer help: use `addr_of!` instead to create a raw pointer
| |
LL | let _y = addr_of!(X); LL | let _y = addr_of!(X);
| ~~~~~~~~~~~ | ~~~~~~~~~ +
error[E0796]: creating a shared reference to a mutable static error[E0796]: creating a shared reference to a mutable static
--> $DIR/reference-to-mut-static-unsafe-fn.rs:13:22 --> $DIR/reference-to-mut-static-unsafe-fn.rs:13:22
@ -20,7 +20,7 @@ LL | let ref _a = X;
help: use `addr_of!` instead to create a raw pointer help: use `addr_of!` instead to create a raw pointer
| |
LL | let ref _a = addr_of!(X); LL | let ref _a = addr_of!(X);
| ~~~~~~~~~~~ | +++++++++ +
error[E0796]: creating a mutable reference to a mutable static error[E0796]: creating a mutable reference to a mutable static
--> $DIR/reference-to-mut-static-unsafe-fn.rs:16:26 --> $DIR/reference-to-mut-static-unsafe-fn.rs:16:26
@ -32,7 +32,7 @@ LL | let ref mut _a = X;
help: use `addr_of_mut!` instead to create a raw pointer help: use `addr_of_mut!` instead to create a raw pointer
| |
LL | let ref mut _a = addr_of_mut!(X); LL | let ref mut _a = addr_of_mut!(X);
| ~~~~~~~~~~~~~~~ | +++++++++++++ +
error[E0796]: creating a shared reference to a mutable static error[E0796]: creating a shared reference to a mutable static
--> $DIR/reference-to-mut-static-unsafe-fn.rs:19:25 --> $DIR/reference-to-mut-static-unsafe-fn.rs:19:25
@ -44,7 +44,7 @@ LL | let (_b, _c) = (&X, &mut Y);
help: use `addr_of!` instead to create a raw pointer help: use `addr_of!` instead to create a raw pointer
| |
LL | let (_b, _c) = (addr_of!(X), &mut Y); LL | let (_b, _c) = (addr_of!(X), &mut Y);
| ~~~~~~~~~~~ | ~~~~~~~~~ +
error[E0796]: creating a mutable reference to a mutable static error[E0796]: creating a mutable reference to a mutable static
--> $DIR/reference-to-mut-static-unsafe-fn.rs:19:29 --> $DIR/reference-to-mut-static-unsafe-fn.rs:19:29
@ -56,7 +56,7 @@ LL | let (_b, _c) = (&X, &mut Y);
help: use `addr_of_mut!` instead to create a raw pointer help: use `addr_of_mut!` instead to create a raw pointer
| |
LL | let (_b, _c) = (&X, addr_of_mut!(Y)); LL | let (_b, _c) = (&X, addr_of_mut!(Y));
| ~~~~~~~~~~~~~~~ | ~~~~~~~~~~~~~ +
error[E0796]: creating a shared reference to a mutable static error[E0796]: creating a shared reference to a mutable static
--> $DIR/reference-to-mut-static-unsafe-fn.rs:23:13 --> $DIR/reference-to-mut-static-unsafe-fn.rs:23:13
@ -68,7 +68,7 @@ LL | foo(&X);
help: use `addr_of!` instead to create a raw pointer help: use `addr_of!` instead to create a raw pointer
| |
LL | foo(addr_of!(X)); LL | foo(addr_of!(X));
| ~~~~~~~~~~~ | ~~~~~~~~~ +
error: aborting due to 6 previous errors error: aborting due to 6 previous errors

View File

@ -15,7 +15,7 @@ LL | #![deny(static_mut_refs)]
help: use `addr_of!` instead to create a raw pointer help: use `addr_of!` instead to create a raw pointer
| |
LL | let _y = addr_of!(X); LL | let _y = addr_of!(X);
| ~~~~~~~~~~~ | ~~~~~~~~~ +
error: creating a mutable reference to mutable static is discouraged error: creating a mutable reference to mutable static is discouraged
--> $DIR/reference-to-mut-static.rs:20:18 --> $DIR/reference-to-mut-static.rs:20:18
@ -29,7 +29,7 @@ LL | let _y = &mut X;
help: use `addr_of_mut!` instead to create a raw pointer help: use `addr_of_mut!` instead to create a raw pointer
| |
LL | let _y = addr_of_mut!(X); LL | let _y = addr_of_mut!(X);
| ~~~~~~~~~~~~~~~ | ~~~~~~~~~~~~~ +
error: creating a shared reference to mutable static is discouraged error: creating a shared reference to mutable static is discouraged
--> $DIR/reference-to-mut-static.rs:28:22 --> $DIR/reference-to-mut-static.rs:28:22
@ -43,7 +43,7 @@ LL | let ref _a = X;
help: use `addr_of!` instead to create a raw pointer help: use `addr_of!` instead to create a raw pointer
| |
LL | let ref _a = addr_of!(X); LL | let ref _a = addr_of!(X);
| ~~~~~~~~~~~ | +++++++++ +
error: creating a shared reference to mutable static is discouraged error: creating a shared reference to mutable static is discouraged
--> $DIR/reference-to-mut-static.rs:32:25 --> $DIR/reference-to-mut-static.rs:32:25
@ -57,7 +57,7 @@ LL | let (_b, _c) = (&X, &Y);
help: use `addr_of!` instead to create a raw pointer help: use `addr_of!` instead to create a raw pointer
| |
LL | let (_b, _c) = (addr_of!(X), &Y); LL | let (_b, _c) = (addr_of!(X), &Y);
| ~~~~~~~~~~~ | ~~~~~~~~~ +
error: creating a shared reference to mutable static is discouraged error: creating a shared reference to mutable static is discouraged
--> $DIR/reference-to-mut-static.rs:32:29 --> $DIR/reference-to-mut-static.rs:32:29
@ -71,7 +71,7 @@ LL | let (_b, _c) = (&X, &Y);
help: use `addr_of!` instead to create a raw pointer help: use `addr_of!` instead to create a raw pointer
| |
LL | let (_b, _c) = (&X, addr_of!(Y)); LL | let (_b, _c) = (&X, addr_of!(Y));
| ~~~~~~~~~~~ | ~~~~~~~~~ +
error: creating a shared reference to mutable static is discouraged error: creating a shared reference to mutable static is discouraged
--> $DIR/reference-to-mut-static.rs:38:13 --> $DIR/reference-to-mut-static.rs:38:13
@ -85,7 +85,7 @@ LL | foo(&X);
help: use `addr_of!` instead to create a raw pointer help: use `addr_of!` instead to create a raw pointer
| |
LL | foo(addr_of!(X)); LL | foo(addr_of!(X));
| ~~~~~~~~~~~ | ~~~~~~~~~ +
error: aborting due to 6 previous errors error: aborting due to 6 previous errors

View File

@ -8,7 +8,7 @@ LL | let _y = &X;
help: use `addr_of!` instead to create a raw pointer help: use `addr_of!` instead to create a raw pointer
| |
LL | let _y = addr_of!(X); LL | let _y = addr_of!(X);
| ~~~~~~~~~~~ | ~~~~~~~~~ +
error[E0796]: creating a mutable reference to a mutable static error[E0796]: creating a mutable reference to a mutable static
--> $DIR/reference-to-mut-static.rs:20:18 --> $DIR/reference-to-mut-static.rs:20:18
@ -20,7 +20,7 @@ LL | let _y = &mut X;
help: use `addr_of_mut!` instead to create a raw pointer help: use `addr_of_mut!` instead to create a raw pointer
| |
LL | let _y = addr_of_mut!(X); LL | let _y = addr_of_mut!(X);
| ~~~~~~~~~~~~~~~ | ~~~~~~~~~~~~~ +
error[E0796]: creating a shared reference to a mutable static error[E0796]: creating a shared reference to a mutable static
--> $DIR/reference-to-mut-static.rs:28:22 --> $DIR/reference-to-mut-static.rs:28:22
@ -32,7 +32,7 @@ LL | let ref _a = X;
help: use `addr_of!` instead to create a raw pointer help: use `addr_of!` instead to create a raw pointer
| |
LL | let ref _a = addr_of!(X); LL | let ref _a = addr_of!(X);
| ~~~~~~~~~~~ | +++++++++ +
error[E0796]: creating a shared reference to a mutable static error[E0796]: creating a shared reference to a mutable static
--> $DIR/reference-to-mut-static.rs:32:25 --> $DIR/reference-to-mut-static.rs:32:25
@ -44,7 +44,7 @@ LL | let (_b, _c) = (&X, &Y);
help: use `addr_of!` instead to create a raw pointer help: use `addr_of!` instead to create a raw pointer
| |
LL | let (_b, _c) = (addr_of!(X), &Y); LL | let (_b, _c) = (addr_of!(X), &Y);
| ~~~~~~~~~~~ | ~~~~~~~~~ +
error[E0796]: creating a shared reference to a mutable static error[E0796]: creating a shared reference to a mutable static
--> $DIR/reference-to-mut-static.rs:32:29 --> $DIR/reference-to-mut-static.rs:32:29
@ -56,7 +56,7 @@ LL | let (_b, _c) = (&X, &Y);
help: use `addr_of!` instead to create a raw pointer help: use `addr_of!` instead to create a raw pointer
| |
LL | let (_b, _c) = (&X, addr_of!(Y)); LL | let (_b, _c) = (&X, addr_of!(Y));
| ~~~~~~~~~~~ | ~~~~~~~~~ +
error[E0796]: creating a shared reference to a mutable static error[E0796]: creating a shared reference to a mutable static
--> $DIR/reference-to-mut-static.rs:38:13 --> $DIR/reference-to-mut-static.rs:38:13
@ -68,7 +68,7 @@ LL | foo(&X);
help: use `addr_of!` instead to create a raw pointer help: use `addr_of!` instead to create a raw pointer
| |
LL | foo(addr_of!(X)); LL | foo(addr_of!(X));
| ~~~~~~~~~~~ | ~~~~~~~~~ +
error: aborting due to 6 previous errors error: aborting due to 6 previous errors

View File

@ -11,7 +11,7 @@ LL | let rb = &B;
help: use `addr_of!` instead to create a raw pointer help: use `addr_of!` instead to create a raw pointer
| |
LL | let rb = addr_of!(B); LL | let rb = addr_of!(B);
| ~~~~~~~~~~~ | ~~~~~~~~~ +
warning: creating a shared reference to mutable static is discouraged warning: creating a shared reference to mutable static is discouraged
--> $DIR/safe-extern-statics-mut.rs:15:15 --> $DIR/safe-extern-statics-mut.rs:15:15
@ -25,7 +25,7 @@ LL | let xrb = &XB;
help: use `addr_of!` instead to create a raw pointer help: use `addr_of!` instead to create a raw pointer
| |
LL | let xrb = addr_of!(XB); LL | let xrb = addr_of!(XB);
| ~~~~~~~~~~~~ | ~~~~~~~~~ +
error[E0133]: use of mutable static is unsafe and requires unsafe function or block error[E0133]: use of mutable static is unsafe and requires unsafe function or block
--> $DIR/safe-extern-statics-mut.rs:11:13 --> $DIR/safe-extern-statics-mut.rs:11:13

View File

@ -11,7 +11,7 @@ LL | static n: &'static usize = unsafe { &n_mut };
help: use `addr_of!` instead to create a raw pointer help: use `addr_of!` instead to create a raw pointer
| |
LL | static n: &'static usize = unsafe { addr_of!(n_mut) }; LL | static n: &'static usize = unsafe { addr_of!(n_mut) };
| ~~~~~~~~~~~~~~~ | ~~~~~~~~~ +
warning: 1 warning emitted warning: 1 warning emitted

View File

@ -11,7 +11,7 @@ LL | static_bound(&static_mut_xc::a);
help: use `addr_of!` instead to create a raw pointer help: use `addr_of!` instead to create a raw pointer
| |
LL | static_bound(addr_of!(static_mut_xc::a)); LL | static_bound(addr_of!(static_mut_xc::a));
| ~~~~~~~~~~~~~~~~~~~~~~~~~~ | ~~~~~~~~~ +
warning: creating a mutable reference to mutable static is discouraged warning: creating a mutable reference to mutable static is discouraged
--> $DIR/static-mut-xc.rs:30:22 --> $DIR/static-mut-xc.rs:30:22
@ -25,7 +25,7 @@ LL | static_bound_set(&mut static_mut_xc::a);
help: use `addr_of_mut!` instead to create a raw pointer help: use `addr_of_mut!` instead to create a raw pointer
| |
LL | static_bound_set(addr_of_mut!(static_mut_xc::a)); LL | static_bound_set(addr_of_mut!(static_mut_xc::a));
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ~~~~~~~~~~~~~ +
warning: 2 warnings emitted warning: 2 warnings emitted

View File

@ -11,7 +11,7 @@ LL | static mut S: *const u8 = unsafe { &S as *const *const u8 as *const u8 };
help: use `addr_of!` instead to create a raw pointer help: use `addr_of!` instead to create a raw pointer
| |
LL | static mut S: *const u8 = unsafe { addr_of!(S) as *const *const u8 as *const u8 }; LL | static mut S: *const u8 = unsafe { addr_of!(S) as *const *const u8 as *const u8 };
| ~~~~~~~~~~~ | ~~~~~~~~~ +
warning: 1 warning emitted warning: 1 warning emitted