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-06-11 10:50:34 -05:00
|
|
|
--> $DIR/issue-38091.rs:1:12
|
2020-06-16 03:06:35 -05:00
|
|
|
|
|
|
|
|
LL | #![feature(specialization)]
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: see issue #31844 <https://github.com/rust-lang/rust/issues/31844> for more information
|
2020-10-13 18:35:32 -05:00
|
|
|
= 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-06-16 03:06:35 -05:00
|
|
|
|
2020-05-30 11:21:25 -05:00
|
|
|
error[E0277]: the trait bound `(): Valid` is not satisfied
|
2021-12-10 20:20:41 -06:00
|
|
|
--> $DIR/issue-38091.rs:12:23
|
2020-05-30 11:21:25 -05:00
|
|
|
|
|
|
|
|
LL | default type Ty = ();
|
2021-12-10 20:20:41 -06:00
|
|
|
| ^^ the trait `Valid` is not implemented for `()`
|
2021-07-31 11:26:55 -05:00
|
|
|
|
|
2023-09-09 22:33:07 -05:00
|
|
|
help: this trait has no implementations, consider adding one
|
|
|
|
--> $DIR/issue-38091.rs:20:1
|
|
|
|
|
|
|
|
|
LL | trait Valid {}
|
|
|
|
| ^^^^^^^^^^^
|
2021-07-31 11:26:55 -05:00
|
|
|
note: required by a bound in `Iterate::Ty`
|
|
|
|
--> $DIR/issue-38091.rs:5:14
|
|
|
|
|
|
|
|
|
LL | type Ty: Valid;
|
|
|
|
| ^^^^^ required by this bound in `Iterate::Ty`
|
2020-05-30 11:21:25 -05:00
|
|
|
|
2020-07-25 07:41:53 -05:00
|
|
|
error: aborting due to previous error; 1 warning emitted
|
2020-06-16 03:06:35 -05:00
|
|
|
|
2020-07-25 07:41:53 -05:00
|
|
|
For more information about this error, try `rustc --explain E0277`.
|