-
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.
- Loading branch information
1 parent
1c1ce2f
commit b77bb5c
Showing
6 changed files
with
10 additions
and
31 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
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 |
---|---|---|
@@ -1,33 +1,14 @@ | ||
error[E0658]: associated const equality is incomplete | ||
--> $DIR/assoc-const.rs:14:15 | ||
| | ||
LL | fn foo<F: Foo<N=3>>() {} | ||
| ^^^ | ||
| | ||
= note: see issue #92827 <https://github.com/rust-lang/rust/issues/92827> for more information | ||
= help: add `#![feature(associated_const_equality)]` to the crate attributes to enable | ||
|
||
error[E0658]: associated const equality is incomplete | ||
--> $DIR/assoc-const.rs:17:15 | ||
| | ||
LL | fn bar<F: Foo<N={TEST}>>() {} | ||
| ^^^^^^^^ | ||
| | ||
= note: see issue #92827 <https://github.com/rust-lang/rust/issues/92827> for more information | ||
= help: add `#![feature(associated_const_equality)]` to the crate attributes to enable | ||
|
||
error: associated const equality is incomplete | ||
--> $DIR/assoc-const.rs:14:15 | ||
--> $DIR/assoc-const.rs:16:15 | ||
| | ||
LL | fn foo<F: Foo<N=3>>() {} | ||
| ^^^ cannot yet relate associated const | ||
|
||
error: associated const equality is incomplete | ||
--> $DIR/assoc-const.rs:17:15 | ||
--> $DIR/assoc-const.rs:18:15 | ||
| | ||
LL | fn bar<F: Foo<N={TEST}>>() {} | ||
| ^^^^^^^^ cannot yet relate associated const | ||
|
||
error: aborting due to 4 previous errors | ||
error: aborting due to 2 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0658`. |