You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
= help: only type `()` implements the trait, consider using it directly instead
16
16
17
17
error[E0038]: the trait `X` cannot be made into an object
18
-
--> $DIR/issue-50781.rs:16:23
18
+
--> $DIR/issue-50781.rs:16:6
19
19
|
20
20
LL | <dyn X as X>::foo(&());
21
-
| ^^^ `X` cannot be made into an object
21
+
| ^^^^^ `X` cannot be made into an object
22
22
|
23
23
note: for a trait to be "dyn-compatible" it needs to allow building a vtable to allow the call to be resolvable dynamically; for more information visit <https://doc.rust-lang.org/reference/items/traits.html#object-safety>
| ^^^ ...because method `foo` references the `Self` type in its `where` clause
30
30
= help: consider moving `foo` to another trait
31
31
= help: only type `()` implements the trait, consider using it directly instead
32
-
= note: required for the cast from `&()` to `&dyn X`
33
32
34
33
error[E0038]: the trait `X` cannot be made into an object
35
-
--> $DIR/issue-50781.rs:16:6
34
+
--> $DIR/issue-50781.rs:16:23
36
35
|
37
36
LL | <dyn X as X>::foo(&());
38
-
| ^^^^^ `X` cannot be made into an object
37
+
| ^^^ `X` cannot be made into an object
39
38
|
40
39
note: for a trait to be "dyn-compatible" it needs to allow building a vtable to allow the call to be resolvable dynamically; for more information visit <https://doc.rust-lang.org/reference/items/traits.html#object-safety>
0 commit comments