2020-10-26 23:56:22 +00:00
|
|
|
error[E0412]: cannot find type `PhantomData` in this scope
|
|
|
|
--> $DIR/issue-78372.rs:2:23
|
|
|
|
|
|
|
|
|
LL | struct Smaht<T, MISC>(PhantomData);
|
|
|
|
| ^^^^^^^^^^^ not found in this scope
|
|
|
|
|
|
|
|
|
help: consider importing this struct
|
|
|
|
|
|
2023-03-18 02:18:39 +00:00
|
|
|
LL + use std::marker::PhantomData;
|
2020-10-26 23:56:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
error[E0412]: cannot find type `U` in this scope
|
|
|
|
--> $DIR/issue-78372.rs:3:31
|
|
|
|
|
|
|
|
|
LL | impl<T> DispatchFromDyn<Smaht<U, MISC>> for T {}
|
2021-05-05 16:59:37 +00:00
|
|
|
| - ^
|
2020-10-26 23:56:22 +00:00
|
|
|
| |
|
|
|
|
| similarly named type parameter `T` defined here
|
2021-05-05 16:59:37 +00:00
|
|
|
|
|
|
|
|
help: a type parameter with a similar name exists
|
|
|
|
|
|
|
|
|
LL | impl<T> DispatchFromDyn<Smaht<T, MISC>> for T {}
|
2021-06-22 02:07:19 +00:00
|
|
|
| ~
|
2021-05-05 16:59:37 +00:00
|
|
|
help: you might be missing a type parameter
|
|
|
|
|
|
|
|
|
LL | impl<T, U> DispatchFromDyn<Smaht<U, MISC>> for T {}
|
2021-06-22 02:07:19 +00:00
|
|
|
| +++
|
2020-10-26 23:56:22 +00:00
|
|
|
|
|
|
|
error[E0412]: cannot find type `MISC` in this scope
|
|
|
|
--> $DIR/issue-78372.rs:3:34
|
|
|
|
|
|
|
|
|
LL | impl<T> DispatchFromDyn<Smaht<U, MISC>> for T {}
|
2023-01-08 23:21:46 +00:00
|
|
|
| ^^^^ not found in this scope
|
|
|
|
|
|
|
|
|
help: you might be missing a type parameter
|
|
|
|
|
|
|
|
|
LL | impl<T, MISC> DispatchFromDyn<Smaht<U, MISC>> for T {}
|
|
|
|
| ++++++
|
2020-10-26 23:56:22 +00:00
|
|
|
|
|
|
|
error[E0658]: use of unstable library feature 'dispatch_from_dyn'
|
|
|
|
--> $DIR/issue-78372.rs:1:5
|
|
|
|
|
|
|
|
|
LL | use std::ops::DispatchFromDyn;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: add `#![feature(dispatch_from_dyn)]` to the crate attributes to enable
|
|
|
|
|
|
|
|
error[E0658]: use of unstable library feature 'dispatch_from_dyn'
|
|
|
|
--> $DIR/issue-78372.rs:3:9
|
|
|
|
|
|
|
|
|
LL | impl<T> DispatchFromDyn<Smaht<U, MISC>> for T {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: add `#![feature(dispatch_from_dyn)]` to the crate attributes to enable
|
|
|
|
|
2021-10-21 13:36:35 +00:00
|
|
|
error[E0378]: the trait `DispatchFromDyn` may only be implemented for a coercion between structures
|
|
|
|
--> $DIR/issue-78372.rs:3:1
|
|
|
|
|
|
|
|
|
LL | impl<T> DispatchFromDyn<Smaht<U, MISC>> for T {}
|
2022-02-13 15:27:59 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2021-10-21 13:36:35 +00:00
|
|
|
|
2021-05-09 18:53:13 +00:00
|
|
|
error: aborting due to 6 previous errors
|
2020-10-26 23:56:22 +00:00
|
|
|
|
2021-05-09 18:53:13 +00:00
|
|
|
Some errors have detailed explanations: E0378, E0412, E0658.
|
|
|
|
For more information about an error, try `rustc --explain E0378`.
|