forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#93284 - eholk:disable-drop-range-analysis, r=…
…pnkfelix Disable drop range analysis The previous PR, rust-lang#93165, still performed the drop range analysis despite ignoring the results. Unfortunately, there were ICEs in the analysis as well, so some packages failed to build (see the issue rust-lang#93197 for an example). This change further disables the analysis and just provides dummy results in that case.
- Loading branch information
Showing
2 changed files
with
33 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// Regression test for #93197 | ||
// check-pass | ||
// edition:2021 | ||
|
||
#![feature(try_blocks)] | ||
|
||
use std::sync::{mpsc, mpsc::SendError}; | ||
|
||
pub async fn foo() { | ||
let (tx, _) = mpsc::channel(); | ||
|
||
let _: Result<(), SendError<&str>> = try { tx.send("hello")?; }; | ||
} | ||
|
||
fn main() {} |