]> git.lizzy.rs Git - rust.git/commit - src/tools/rust-analyzer
Rollup merge of #95256 - thomcc:fix-unwind-safe, r=m-ou-se
authorDylan DPC <99973273+Dylan-DPC@users.noreply.github.com>
Tue, 29 Mar 2022 20:46:33 +0000 (22:46 +0200)
committerGitHub <noreply@github.com>
Tue, 29 Mar 2022 20:46:33 +0000 (22:46 +0200)
commit3208ed7b21b8b8f035b8a6bb3172be0763cf45ab
treed85a20e80af6a529613e3c7a7ae6a51b6f134f3b
parentbba2a64d0c5ba20c4153676a09381b8703c197ba
parent3ac93abfb220ad3fc0614787a5644e63c162f0d6
Rollup merge of #95256 - thomcc:fix-unwind-safe, r=m-ou-se

Ensure io::Error's bitpacked repr doesn't accidentally impl UnwindSafe

Sadly, I'm not sure how to easily test that we don't impl a trait, though (or can libstd use `where io::Error: !UnwindSafe` or something).

Fixes #95203