Skip to content

Commit 796ce59

Browse files
committed
Auto merge of rust-lang#132336 - matthiaskrgr:rollup-ay110ws, r=matthiaskrgr
Rollup of 4 pull requests Successful merges: - rust-lang#129394 (Don't lint `irrefutable_let_patterns` on leading patterns if `else if` let-chains) - rust-lang#131096 (rustdoc: Remove usage of `allow(unused)` attribute on `no_run` merged doctests) - rust-lang#132322 (powerpc64-ibm-aix: update maintainters) - rust-lang#132327 (Point to Fuchsia team in platform support docs) r? `@ghost` `@rustbot` modify labels: rollup
2 parents 1e4f10b + 7bebbe7 commit 796ce59

File tree

10 files changed

+149
-24
lines changed

10 files changed

+149
-24
lines changed

compiler/rustc_mir_build/src/thir/pattern/check_match.rs

+18-7
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,8 @@ enum LetSource {
7979
IfLetGuard,
8080
LetElse,
8181
WhileLet,
82+
Else,
83+
ElseIfLet,
8284
}
8385

8486
struct MatchVisitor<'p, 'tcx> {
@@ -129,15 +131,20 @@ impl<'p, 'tcx> Visitor<'p, 'tcx> for MatchVisitor<'p, 'tcx> {
129131
// Give a specific `let_source` for the condition.
130132
let let_source = match ex.span.desugaring_kind() {
131133
Some(DesugaringKind::WhileLoop) => LetSource::WhileLet,
132-
_ => LetSource::IfLet,
134+
_ => match self.let_source {
135+
LetSource::Else => LetSource::ElseIfLet,
136+
_ => LetSource::IfLet,
137+
},
133138
};
134139
self.with_let_source(let_source, |this| this.visit_expr(&self.thir[cond]));
135140
self.with_let_source(LetSource::None, |this| {
136141
this.visit_expr(&this.thir[then]);
137-
if let Some(else_) = else_opt {
138-
this.visit_expr(&this.thir[else_]);
139-
}
140142
});
143+
if let Some(else_) = else_opt {
144+
self.with_let_source(LetSource::Else, |this| {
145+
this.visit_expr(&this.thir[else_])
146+
});
147+
}
141148
return;
142149
}
143150
ExprKind::Match { scrutinee, scrutinee_hir_id: _, box ref arms, match_source } => {
@@ -573,9 +580,13 @@ impl<'p, 'tcx> MatchVisitor<'p, 'tcx> {
573580
// and we shouldn't lint.
574581
// For let guards inside a match, prefixes might use bindings of the match pattern,
575582
// so can't always be moved out.
583+
// For `else if let`, an extra indentation level would be required to move the bindings.
576584
// FIXME: Add checking whether the bindings are actually used in the prefix,
577585
// and lint if they are not.
578-
if !matches!(self.let_source, LetSource::WhileLet | LetSource::IfLetGuard) {
586+
if !matches!(
587+
self.let_source,
588+
LetSource::WhileLet | LetSource::IfLetGuard | LetSource::ElseIfLet
589+
) {
579590
// Emit the lint
580591
let prefix = &chain_refutabilities[..until];
581592
let span_start = prefix[0].unwrap().0;
@@ -906,8 +917,8 @@ fn report_irrefutable_let_patterns(
906917
}
907918

908919
match source {
909-
LetSource::None | LetSource::PlainLet => bug!(),
910-
LetSource::IfLet => emit_diag!(IrrefutableLetPatternsIfLet),
920+
LetSource::None | LetSource::PlainLet | LetSource::Else => bug!(),
921+
LetSource::IfLet | LetSource::ElseIfLet => emit_diag!(IrrefutableLetPatternsIfLet),
911922
LetSource::IfLetGuard => emit_diag!(IrrefutableLetPatternsIfLetGuard),
912923
LetSource::LetElse => emit_diag!(IrrefutableLetPatternsLetElse),
913924
LetSource::WhileLet => emit_diag!(IrrefutableLetPatternsWhileLet),

src/doc/rustc/src/platform-support/aix.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ Rust for AIX operating system, currently only 64-bit PowerPC is supported.
66

77
## Target maintainers
88

9-
- QIU Chaofan `qiucofan@cn.ibm.com`, https://github.com/ecnelises
10-
- Kai LUO, `lkail@cn.ibm.com`, https://github.com/bzEq
9+
- David Tenty `daltenty@ibm.com`, https://github.com/daltenty
10+
- Chris Cambly, `ccambly@ca.ibm.com`, https://github.com/gilamn5tr
1111

1212
## Requirements
1313

src/doc/rustc/src/platform-support/fuchsia.md

+2-10
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,9 @@ updatable, and performant.
77

88
## Target maintainers
99

10-
The [Fuchsia team]:
10+
See [`fuchsia.toml`] in the `team` repository for current target maintainers.
1111

12-
- Tyler Mandry ([@tmandry](https://github.com/tmandry))
13-
- David Koloski ([@djkoloski](https://github.com/djkoloski))
14-
- Julia Ryan ([@P1n3appl3](https://github.com/P1n3appl3))
15-
- Erick Tryzelaar ([@erickt](https://github.com/erickt))
16-
17-
As the team evolves over time, the specific members listed here may differ from
18-
the members reported by the API. The API should be considered to be
19-
authoritative if this occurs. Instead of pinging individual members, use
20-
`@rustbot ping fuchsia` to contact the team on GitHub.
12+
[`fuchsia.toml`]: https://github.com/rust-lang/team/blob/master/teams/fuchsia.toml
2113

2214
## Table of contents
2315

src/librustdoc/doctest/runner.rs

-4
Original file line numberDiff line numberDiff line change
@@ -198,10 +198,6 @@ fn generate_mergeable_doctest(
198198
} else {
199199
writeln!(output, "mod {test_id} {{\n{}{}", doctest.crates, doctest.maybe_crate_attrs)
200200
.unwrap();
201-
if scraped_test.langstr.no_run {
202-
// To prevent having warnings about unused items since they're not called.
203-
writeln!(output, "#![allow(unused)]").unwrap();
204-
}
205201
if doctest.has_main_fn {
206202
output.push_str(&doctest.everything_else);
207203
} else {
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// This test ensures that the 2024 edition merged doctest will not use `#[allow(unused)]`.
2+
3+
//@ compile-flags:--test -Zunstable-options --edition 2024
4+
//@ normalize-stdout-test: "tests/rustdoc-ui/doctest" -> "$$DIR"
5+
//@ normalize-stdout-test: "finished in \d+\.\d+s" -> "finished in $$TIME"
6+
//@ failure-status: 101
7+
8+
#![doc(test(attr(allow(unused_variables), deny(warnings))))]
9+
10+
/// Example
11+
///
12+
/// ```rust,no_run
13+
/// trait T { fn f(); }
14+
/// ```
15+
pub fn f() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
2+
running 1 test
3+
test $DIR/dead-code-2024.rs - f (line 12) - compile ... FAILED
4+
5+
failures:
6+
7+
---- $DIR/dead-code-2024.rs - f (line 12) stdout ----
8+
error: trait `T` is never used
9+
--> $DIR/dead-code-2024.rs:13:7
10+
|
11+
LL | trait T { fn f(); }
12+
| ^
13+
|
14+
note: the lint level is defined here
15+
--> $DIR/dead-code-2024.rs:11:9
16+
|
17+
LL | #![deny(warnings)]
18+
| ^^^^^^^^
19+
= note: `#[deny(dead_code)]` implied by `#[deny(warnings)]`
20+
21+
error: aborting due to 1 previous error
22+
23+
Couldn't compile the test.
24+
25+
failures:
26+
$DIR/dead-code-2024.rs - f (line 12)
27+
28+
test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out; finished in $TIME
29+

tests/rustdoc-ui/doctest/dead-code.rs

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// This test ensures that the doctest will not use `#[allow(unused)]`.
2+
3+
//@ compile-flags:--test
4+
//@ normalize-stdout-test: "tests/rustdoc-ui/doctest" -> "$$DIR"
5+
//@ normalize-stdout-test: "finished in \d+\.\d+s" -> "finished in $$TIME"
6+
//@ failure-status: 101
7+
8+
#![doc(test(attr(allow(unused_variables), deny(warnings))))]
9+
10+
/// Example
11+
///
12+
/// ```rust,no_run
13+
/// trait T { fn f(); }
14+
/// ```
15+
pub fn f() {}
+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
2+
running 1 test
3+
test $DIR/dead-code.rs - f (line 12) - compile ... FAILED
4+
5+
failures:
6+
7+
---- $DIR/dead-code.rs - f (line 12) stdout ----
8+
error: trait `T` is never used
9+
--> $DIR/dead-code.rs:13:7
10+
|
11+
LL | trait T { fn f(); }
12+
| ^
13+
|
14+
note: the lint level is defined here
15+
--> $DIR/dead-code.rs:11:9
16+
|
17+
LL | #![deny(warnings)]
18+
| ^^^^^^^^
19+
= note: `#[deny(dead_code)]` implied by `#[deny(warnings)]`
20+
21+
error: aborting due to 1 previous error
22+
23+
Couldn't compile the test.
24+
25+
failures:
26+
$DIR/dead-code.rs - f (line 12)
27+
28+
test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out; finished in $TIME
29+

tests/ui/rfcs/rfc-2497-if-let-chains/irrefutable-lets.disallowed.stderr

+19-1
Original file line numberDiff line numberDiff line change
@@ -111,5 +111,23 @@ LL | while let Some(ref first) = opt && let second = first && let _third = s
111111
= note: these patterns will always match
112112
= help: consider moving them into the body
113113

114-
error: aborting due to 12 previous errors
114+
error: trailing irrefutable pattern in let chain
115+
--> $DIR/irrefutable-lets.rs:87:12
116+
|
117+
LL | && let x = &opt
118+
| ^^^^^^^^^^^^
119+
|
120+
= note: this pattern will always match
121+
= help: consider moving it into the body
122+
123+
error: leading irrefutable pattern in let chain
124+
--> $DIR/irrefutable-lets.rs:93:12
125+
|
126+
LL | if let x = opt.clone().map(|_| 1)
127+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
128+
|
129+
= note: this pattern will always match
130+
= help: consider moving it outside of the construct
131+
132+
error: aborting due to 14 previous errors
115133

tests/ui/rfcs/rfc-2497-if-let-chains/irrefutable-lets.rs

+20
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,24 @@ fn main() {
7575
&& let Range { start: local_start, end: _ } = first
7676
&& let None = local_start {
7777
}
78+
79+
// No error. An extra nesting level would be required for the `else if`.
80+
if opt == Some(None..None) {
81+
} else if let x = opt.clone().map(|_| 1)
82+
&& x == Some(1)
83+
{}
84+
85+
if opt == Some(None..None) {
86+
} else if opt.is_some()
87+
&& let x = &opt
88+
//[disallowed]~^ ERROR trailing irrefutable pattern in let chain
89+
{}
90+
91+
if opt == Some(None..None) {
92+
} else {
93+
if let x = opt.clone().map(|_| 1)
94+
//[disallowed]~^ ERROR leading irrefutable pattern in let chain
95+
&& x == Some(1)
96+
{}
97+
}
7898
}

0 commit comments

Comments
 (0)