]> git.lizzy.rs Git - rust.git/blob - tests/ui/traits/issue-78372.stderr
Rollup merge of #106701 - ibraheemdev:sync-sender-spin, r=Amanieu
[rust.git] / tests / ui / traits / issue-78372.stderr
1 error[E0412]: cannot find type `PhantomData` in this scope
2   --> $DIR/issue-78372.rs:2:23
3    |
4 LL | struct Smaht<T, MISC>(PhantomData);
5    |                       ^^^^^^^^^^^ not found in this scope
6    |
7 help: consider importing this struct
8    |
9 LL | use std::marker::PhantomData;
10    |
11
12 error[E0412]: cannot find type `U` in this scope
13   --> $DIR/issue-78372.rs:3:31
14    |
15 LL | impl<T> DispatchFromDyn<Smaht<U, MISC>> for T {}
16    |      -                        ^
17    |      |
18    |      similarly named type parameter `T` defined here
19    |
20 help: a type parameter with a similar name exists
21    |
22 LL | impl<T> DispatchFromDyn<Smaht<T, MISC>> for T {}
23    |                               ~
24 help: you might be missing a type parameter
25    |
26 LL | impl<T, U> DispatchFromDyn<Smaht<U, MISC>> for T {}
27    |       +++
28
29 error[E0412]: cannot find type `MISC` in this scope
30   --> $DIR/issue-78372.rs:3:34
31    |
32 LL | impl<T> DispatchFromDyn<Smaht<U, MISC>> for T {}
33    |                                  ^^^^ not found in this scope
34    |
35 help: you might be missing a type parameter
36    |
37 LL | impl<T, MISC> DispatchFromDyn<Smaht<U, MISC>> for T {}
38    |       ++++++
39
40 error[E0658]: use of unstable library feature 'dispatch_from_dyn'
41   --> $DIR/issue-78372.rs:1:5
42    |
43 LL | use std::ops::DispatchFromDyn;
44    |     ^^^^^^^^^^^^^^^^^^^^^^^^^
45    |
46    = help: add `#![feature(dispatch_from_dyn)]` to the crate attributes to enable
47
48 error[E0658]: use of unstable library feature 'dispatch_from_dyn'
49   --> $DIR/issue-78372.rs:3:9
50    |
51 LL | impl<T> DispatchFromDyn<Smaht<U, MISC>> for T {}
52    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
53    |
54    = help: add `#![feature(dispatch_from_dyn)]` to the crate attributes to enable
55
56 error[E0378]: the trait `DispatchFromDyn` may only be implemented for a coercion between structures
57   --> $DIR/issue-78372.rs:3:1
58    |
59 LL | impl<T> DispatchFromDyn<Smaht<U, MISC>> for T {}
60    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
61
62 error: aborting due to 6 previous errors
63
64 Some errors have detailed explanations: E0378, E0412, E0658.
65 For more information about an error, try `rustc --explain E0378`.