rust/tests/ui/specialization/specialization-overlap.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
1.8 KiB
Plaintext
Raw Normal View History

2020-06-16 03:06:35 -05:00
warning: the feature `specialization` is incomplete and may not be safe to use and/or cause compiler crashes
2020-05-17 03:22:48 -05:00
--> $DIR/specialization-overlap.rs:1: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
2022-09-18 10:55:36 -05:00
= note: `#[warn(incomplete_features)]` on by default
2020-05-17 03:22:48 -05:00
error[E0119]: conflicting implementations of trait `Foo` for type `Vec<_>`
2018-12-25 09:56:47 -06:00
--> $DIR/specialization-overlap.rs:5:1
2018-08-08 07:28:26 -05:00
|
LL | impl<T: Clone> Foo for T {}
| ------------------------ first implementation here
2019-03-09 06:03:44 -06:00
LL | impl<T> Foo for Vec<T> {}
| ^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `Vec<_>`
2018-08-08 07:28:26 -05:00
2021-04-06 20:16:11 -05:00
error[E0119]: conflicting implementations of trait `Bar` for type `(u8, u8)`
2018-12-25 09:56:47 -06:00
--> $DIR/specialization-overlap.rs:9:1
2018-08-08 07:28:26 -05:00
|
LL | impl<T> Bar for (T, u8) {}
| ----------------------- first implementation here
2019-03-09 06:03:44 -06:00
LL | impl<T> Bar for (u8, T) {}
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `(u8, u8)`
2021-04-06 20:16:11 -05:00
error[E0119]: conflicting implementations of trait `Baz<u8>` for type `u8`
2018-12-25 09:56:47 -06:00
--> $DIR/specialization-overlap.rs:13:1
2018-08-08 07:28:26 -05:00
|
LL | impl<T> Baz<T> for u8 {}
| --------------------- first implementation here
2019-03-09 06:03:44 -06:00
LL | impl<T> Baz<u8> for T {}
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `u8`
2021-04-06 20:16:11 -05:00
error[E0119]: conflicting implementations of trait `Qux`
2018-12-25 09:56:47 -06:00
--> $DIR/specialization-overlap.rs:17:1
2018-08-08 07:28:26 -05:00
|
LL | impl<T: Clone> Qux for T {}
| ------------------------ first implementation here
2019-03-09 06:03:44 -06:00
LL | impl<T: Eq> Qux for T {}
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^^^^^^^^^^^^^ conflicting implementation
2020-05-17 03:22:48 -05:00
error: aborting due to 4 previous errors; 1 warning emitted
2018-08-08 07:28:26 -05:00
For more information about this error, try `rustc --explain E0119`.