]> git.lizzy.rs Git - rust.git/blob - src/test/ui/generic-associated-types/issue-87429-specialization.stderr
Add a couple more tests
[rust.git] / src / test / ui / generic-associated-types / issue-87429-specialization.stderr
1 warning: the feature `specialization` is incomplete and may not be safe to use and/or cause compiler crashes
2   --> $DIR/issue-87429-specialization.rs:3:12
3    |
4 LL | #![feature(specialization)]
5    |            ^^^^^^^^^^^^^^
6    |
7    = note: `#[warn(incomplete_features)]` on by default
8    = note: see issue #31844 <https://github.com/rust-lang/rust/issues/31844> for more information
9    = help: consider using `min_specialization` instead, which is more stable and complete
10
11 error[E0277]: can't compare `Foo` with `Foo`
12   --> $DIR/issue-87429-specialization.rs:21:5
13    |
14 LL |     type Member<'a>: for<'b> PartialEq<Self::Member<'b>>;
15    |                      ----------------------------------- required by this bound in `Family::Member`
16 ...
17 LL |     default type Member<'a> = Foo;
18    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ no implementation for `Foo == Foo`
19    |
20    = help: the trait `PartialEq` is not implemented for `Foo`
21
22 error: aborting due to previous error; 1 warning emitted
23
24 For more information about this error, try `rustc --explain E0277`.