2020-06-16 08:06:35 +00:00
|
|
|
warning: the feature `specialization` is incomplete and may not be safe to use and/or cause compiler crashes
|
2020-06-11 15:50:34 +00:00
|
|
|
--> $DIR/issue-38091.rs:1:12
|
2020-06-16 08:06:35 +00:00
|
|
|
|
|
|
|
|
LL | #![feature(specialization)]
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: see issue #31844 <https://github.com/rust-lang/rust/issues/31844> for more information
|
2020-10-13 23:35:32 +00:00
|
|
|
= help: consider using `min_specialization` instead, which is more stable and complete
|
2022-09-18 15:55:36 +00:00
|
|
|
= note: `#[warn(incomplete_features)]` on by default
|
2020-06-16 08:06:35 +00:00
|
|
|
|
2020-05-30 16:21:25 +00:00
|
|
|
error[E0277]: the trait bound `(): Valid` is not satisfied
|
2021-12-11 02:20:41 +00:00
|
|
|
--> $DIR/issue-38091.rs:12:23
|
2020-05-30 16:21:25 +00:00
|
|
|
|
|
|
|
|
LL | default type Ty = ();
|
2021-12-11 02:20:41 +00:00
|
|
|
| ^^ the trait `Valid` is not implemented for `()`
|
2021-07-31 16:26:55 +00:00
|
|
|
|
|
2023-09-10 03:33:07 +00:00
|
|
|
help: this trait has no implementations, consider adding one
|
|
|
|
--> $DIR/issue-38091.rs:20:1
|
|
|
|
|
|
|
|
|
LL | trait Valid {}
|
|
|
|
| ^^^^^^^^^^^
|
2021-07-31 16:26:55 +00: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 16:21:25 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error; 1 warning emitted
|
2020-06-16 08:06:35 +00:00
|
|
|
|
2020-07-25 12:41:53 +00:00
|
|
|
For more information about this error, try `rustc --explain E0277`.
|