rust/compiler/rustc_trait_selection
Dylan DPC 88e39b2c2e
Rollup merge of #100757 - ouz-a:issue-95134, r=jackh726
Catch overflow early

Although this code should raise an overflow error, it didn't because [check_recursion_limit](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_trait_selection/traits/select/struct.SelectionContext.html#method.check_recursion_limit) it checks for `depth = 128` but not for `129` which should have triggered the overflow error. Anyways this catches that error early.

Fixes #95134
2022-08-22 11:45:45 +05:30
..
src Rollup merge of #100757 - ouz-a:issue-95134, r=jackh726 2022-08-22 11:45:45 +05:30
Cargo.toml Initial (incomplete) implementation of transmutability trait. 2022-07-27 17:33:56 +00:00