Skip to content

Commit f20da94

Browse files
authored
Rollup merge of rust-lang#110476 - compiler-errors:ty-err-ctxt-good-path, r=lcnr
Delay a good path bug on drop for `TypeErrCtxt` (instead of a regular delayed bug) r? `@lcnr` Perhaps we should just delete the `Drop` impl altogether though? Fixes rust-lang/rust-clippy#10645 `@matthiaskrgr:` I don't know how to make a clippy test for this. Any idea? Clippy's UI tests run with `-D warnings` and I have no idea how to switch it off to make a test that triggers this ICE in the clippy test suite 🤣
2 parents a184557 + c5e6ccb commit f20da94

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

compiler/rustc_infer/src/infer/error_reporting/mod.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ use rustc_middle::ty::{
7474
self, error::TypeError, List, Region, Ty, TyCtxt, TypeFoldable, TypeSuperVisitable,
7575
TypeVisitable, TypeVisitableExt,
7676
};
77-
use rustc_span::DUMMY_SP;
7877
use rustc_span::{sym, symbol::kw, BytePos, DesugaringKind, Pos, Span};
7978
use rustc_target::spec::abi;
8079
use std::ops::{ControlFlow, Deref};
@@ -138,7 +137,7 @@ impl Drop for TypeErrCtxt<'_, '_> {
138137
self.infcx
139138
.tcx
140139
.sess
141-
.delay_span_bug(DUMMY_SP, "used a `TypeErrCtxt` without failing compilation");
140+
.delay_good_path_bug("used a `TypeErrCtxt` without raising an error or lint");
142141
}
143142
}
144143
}
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
// Regression test for https://github.com/rust-lang/rust-clippy/issues/5207
1+
// compile-flags: --cap-lints=warn
2+
// ^ for https://github.com/rust-lang/rust-clippy/issues/10645
23

4+
// Regression test for https://github.com/rust-lang/rust-clippy/issues/5207
5+
#![warn(clippy::future_not_send)]
36
pub async fn bar<'a, T: 'a>(_: T) {}
47

58
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
warning: future cannot be sent between threads safely
2+
--> $DIR/ice-5207.rs:6:35
3+
|
4+
LL | pub async fn bar<'a, T: 'a>(_: T) {}
5+
| ^ future returned by `bar` is not `Send`
6+
|
7+
note: captured value is not `Send`
8+
--> $DIR/ice-5207.rs:6:29
9+
|
10+
LL | pub async fn bar<'a, T: 'a>(_: T) {}
11+
| ^ has type `T` which is not `Send`
12+
= note: `T` doesn't implement `std::marker::Send`
13+
= note: `-D clippy::future-not-send` implied by `-D warnings`
14+
15+
warning: 1 warning emitted
16+

0 commit comments

Comments
 (0)