forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#124590 - matthiaskrgr:rollup-091hpnp, r=matth…
…iaskrgr Rollup of 2 pull requests Successful merges: - rust-lang#124542 (Add diagnostic item for `std::iter::Iterator::enumerate`) - rust-lang#124566 (fix `NormalizesTo` proof tree issue) r? `@ghost` `@rustbot` modify labels: rollup
- Loading branch information
Showing
6 changed files
with
181 additions
and
52 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
2 changes: 1 addition & 1 deletion
2
.../specialization-overlap-projection.stderr → ...ization-overlap-projection.current.stderr
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
49 changes: 49 additions & 0 deletions
49
tests/ui/specialization/specialization-overlap-projection.next.stderr
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,49 @@ | ||
warning: the feature `specialization` is incomplete and may not be safe to use and/or cause compiler crashes | ||
--> $DIR/specialization-overlap-projection.rs:10:12 | ||
| | ||
LL | #![feature(specialization)] | ||
| ^^^^^^^^^^^^^^ | ||
| | ||
= note: see issue #31844 <https://github.com/rust-lang/rust/issues/31844> for more information | ||
= help: consider using `min_specialization` instead, which is more stable and complete | ||
= note: `#[warn(incomplete_features)]` on by default | ||
|
||
error[E0119]: conflicting implementations of trait `Foo` for type `u32` | ||
--> $DIR/specialization-overlap-projection.rs:28:1 | ||
| | ||
LL | impl Foo for u32 {} | ||
| ---------------- first implementation here | ||
LL | impl Foo for <u8 as Assoc>::Output {} | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `u32` | ||
|
||
error[E0119]: conflicting implementations of trait `Foo` for type `u32` | ||
--> $DIR/specialization-overlap-projection.rs:30:1 | ||
| | ||
LL | impl Foo for u32 {} | ||
| ---------------- first implementation here | ||
... | ||
LL | impl Foo for <u16 as Assoc>::Output {} | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `u32` | ||
|
||
error[E0282]: type annotations needed | ||
--> $DIR/specialization-overlap-projection.rs:17:27 | ||
| | ||
LL | default type Output = bool; | ||
| ^^^^ cannot infer type for associated type `<T as Assoc>::Output` | ||
|
||
error[E0282]: type annotations needed | ||
--> $DIR/specialization-overlap-projection.rs:21:35 | ||
| | ||
LL | impl Assoc for u8 { type Output = u8; } | ||
| ^^ cannot infer type for associated type `<u8 as Assoc>::Output` | ||
|
||
error[E0282]: type annotations needed | ||
--> $DIR/specialization-overlap-projection.rs:23:36 | ||
| | ||
LL | impl Assoc for u16 { type Output = u16; } | ||
| ^^^ cannot infer type for associated type `<u16 as Assoc>::Output` | ||
|
||
error: aborting due to 5 previous errors; 1 warning emitted | ||
|
||
Some errors have detailed explanations: E0119, E0282. | ||
For more information about an error, try `rustc --explain E0119`. |
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