-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
deal with
const_evaluatable_checked
in ConstEquate
- Loading branch information
Showing
7 changed files
with
80 additions
and
6 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
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
22 changes: 22 additions & 0 deletions
22
src/test/ui/const-generics/const_evaluatable_checked/evaluated-to-ambig.rs
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,22 @@ | ||
// check-pass | ||
|
||
// We previously always returned ambiguity when equating generic consts, even if they | ||
// only contain generic parameters. This is incorrect as trying to unify `N > 1` with `M > 1` | ||
// should fail. | ||
#![allow(incomplete_features)] | ||
#![feature(const_generics, const_evaluatable_checked)] | ||
|
||
enum Assert<const COND: bool> {} | ||
trait IsTrue {} | ||
impl IsTrue for Assert<true> {} | ||
|
||
struct Foo<const N: usize, const M: usize>; | ||
trait Bar<const N: usize, const M: usize> {} | ||
impl<const N: usize, const M: usize> Bar<N, M> for Foo<N, M> | ||
where | ||
Assert<{ N > 1 }>: IsTrue, | ||
Assert<{ M > 1 }>: IsTrue, | ||
{ | ||
} | ||
|
||
fn main() {} |
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