add std::panic::abort_unwind · qinheping/verify-rust-std@9c71d4e (original) (raw)
Navigation Menu
- GitHub Copilot Write better code with AI
- GitHub Models New Manage and compare prompts
- GitHub Advanced Security Find and fix vulnerabilities
- Actions Automate any workflow
- Codespaces Instant dev environments
- Issues Plan and track work
- Code Review Manage code changes
- Discussions Collaborate outside of code
- Code Search Find more, search less
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Appearance settings
Commit 9c71d4e
add std::panic::abort_unwind
File tree
1 file changed
lines changed
1 file changed
lines changed
Lines changed: 3 additions & 0 deletions
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -283,6 +283,9 @@ where | ||
283 | 283 | { |
284 | 284 | } |
285 | 285 | |
286 | +#[unstable(feature = "abort_unwind", issue = "130338")] | |
287 | +pub use core::panic::abort_unwind; | |
288 | + | |
286 | 289 | /// Invokes a closure, capturing the cause of an unwinding panic if one occurs. |
287 | 290 | /// |
288 | 291 | /// This function will return `Ok` with the closure's result if the closure |