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
Copy file name to clipboardexpand all lines: tests/ui/generic-associated-types/issue-71176.stderr
+18-1
Original file line number
Diff line number
Diff line change
@@ -80,7 +80,24 @@ LL | type A<'a>;
80
80
= help: consider moving `A` to another trait
81
81
= help: only type `()` implements the trait, consider using it directly instead
82
82
83
-
error: aborting due to 5 previous errors
83
+
error[E0038]: the trait `Provider` cannot be made into an object
84
+
--> $DIR/issue-71176.rs:19:16
85
+
|
86
+
LL | inner: Box::new(()),
87
+
| ^^^^^^^^^^^^ `Provider` cannot be made into an object
88
+
|
89
+
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>
90
+
--> $DIR/issue-71176.rs:2:10
91
+
|
92
+
LL | trait Provider {
93
+
| -------- this trait cannot be made into an object...
94
+
LL | type A<'a>;
95
+
| ^ ...because it contains the generic associated type `A`
96
+
= help: consider moving `A` to another trait
97
+
= help: only type `()` implements the trait, consider using it directly instead
98
+
= note: required for the cast from `Box<()>` to `Box<(dyn Provider<A<'_> = _> + 'static), {type error}>`
99
+
100
+
error: aborting due to 6 previous errors
84
101
85
102
Some errors have detailed explanations: E0038, E0107.
86
103
For more information about an error, try `rustc --explain E0038`.
warning: the feature `lazy_type_alias` is incomplete and may not be safe to use and/or cause compiler crashes
2
+
--> $DIR/bad-lazy-type-alias.rs:3:12
3
+
|
4
+
LL | #![feature(lazy_type_alias)]
5
+
| ^^^^^^^^^^^^^^^
6
+
|
7
+
= note: see issue #112792 <https://github.com/rust-lang/rust/issues/112792> for more information
8
+
= note: `#[warn(incomplete_features)]` on by default
9
+
10
+
error[E0107]: missing generics for type alias `ExplicitTypeOutlives`
0 commit comments