Skip to content

Commit cc0ec04

Browse files
author
Greg Echelberger
committed
Fix #131977 parens mangled in shared mut static lint suggestion
1 parent b8bb296 commit cc0ec04

File tree

3 files changed

+61
-8
lines changed

3 files changed

+61
-8
lines changed

compiler/rustc_lint/src/static_mut_refs.rs

+19-8
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ use rustc_hir::{Expr, Stmt};
33
use rustc_middle::ty::{Mutability, TyKind};
44
use rustc_session::lint::FutureIncompatibilityReason;
55
use rustc_session::{declare_lint, declare_lint_pass};
6-
use rustc_span::Span;
76
use rustc_span::edition::Edition;
7+
use rustc_span::{BytePos, Span};
88

99
use crate::lints::{MutRefSugg, RefOfMutStatic};
1010
use crate::{LateContext, LateLintPass, LintContext};
@@ -71,13 +71,24 @@ impl<'tcx> LateLintPass<'tcx> for StaticMutRefs {
7171
if matches!(borrow_kind, hir::BorrowKind::Ref)
7272
&& let Some(err_span) = path_is_static_mut(ex, err_span) =>
7373
{
74-
emit_static_mut_refs(
75-
cx,
76-
err_span,
77-
err_span.with_hi(ex.span.lo()),
78-
m,
79-
!expr.span.from_expansion(),
80-
);
74+
let source_map = cx.sess().source_map();
75+
let snippet = source_map.span_to_snippet(err_span);
76+
77+
let sugg_span = if let Ok(snippet) = snippet {
78+
// ( ( &IDENT ) )
79+
// ~~~~ exclude these from the suggestion span to avoid unmatching parens
80+
let exclude_n_bytes: u32 = snippet
81+
.chars()
82+
.take_while(|ch| ch.is_whitespace() || *ch == '(')
83+
.map(|ch| ch.len_utf8() as u32)
84+
.sum();
85+
86+
err_span.with_lo(err_span.lo() + BytePos(exclude_n_bytes)).with_hi(ex.span.lo())
87+
} else {
88+
err_span.with_hi(ex.span.lo())
89+
};
90+
91+
emit_static_mut_refs(cx, err_span, sugg_span, m, !expr.span.from_expansion());
8192
}
8293
hir::ExprKind::MethodCall(_, e, _, _)
8394
if let Some(err_span) = path_is_static_mut(e, expr.span)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
//Missing paren in diagnostic msg: https://github.com/rust-lang/rust/issues/131977
2+
//@check-pass
3+
4+
5+
static mut TEST: usize = 0;
6+
7+
fn main() {
8+
let _ = unsafe { (&TEST) as *const usize };
9+
//~^WARN creating a shared reference to mutable static is discouraged
10+
11+
let _ = unsafe { ((&mut TEST)) as *const usize };
12+
//~^WARN creating a mutable reference to mutable static is discouraged
13+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
warning: creating a shared reference to mutable static is discouraged
2+
--> $DIR/static-mut-shared-parens.rs:8:22
3+
|
4+
LL | let _ = unsafe { (&TEST) as *const usize };
5+
| ^^^^^^^ shared reference to mutable static
6+
|
7+
= note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2024/static-mut-references.html>
8+
= note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives
9+
= note: `#[warn(static_mut_refs)]` on by default
10+
help: use `&raw const` instead to create a raw pointer
11+
|
12+
LL | let _ = unsafe { (&raw const TEST) as *const usize };
13+
| ~~~~~~~~~~
14+
15+
warning: creating a mutable reference to mutable static is discouraged
16+
--> $DIR/static-mut-shared-parens.rs:11:22
17+
|
18+
LL | let _ = unsafe { ((&mut TEST)) as *const usize };
19+
| ^^^^^^^^^^^^^ mutable reference to mutable static
20+
|
21+
= note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2024/static-mut-references.html>
22+
= note: mutable references to mutable statics are dangerous; it's undefined behavior if any other pointer to the static is used or if any other reference is created for the static while the mutable reference lives
23+
help: use `&raw mut` instead to create a raw pointer
24+
|
25+
LL | let _ = unsafe { ((&raw mut TEST)) as *const usize };
26+
| ~~~~~~~~
27+
28+
warning: 2 warnings emitted
29+

0 commit comments

Comments
 (0)