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
error[E0038]: the trait `T` cannot be made into an object
2
+
--> $DIR/issue-87495.rs:4:25
3
+
|
4
+
LL | const CONST: (bool, dyn T);
5
+
| ^^^^^ `T` cannot be made into an object
6
+
|
7
+
= help: consider moving `CONST` to another trait
8
+
note: for a trait to be "object safe" 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>
9
+
--> $DIR/issue-87495.rs:4:11
10
+
|
11
+
LL | trait T {
12
+
| - this trait cannot be made into an object...
13
+
LL | const CONST: (bool, dyn T);
14
+
| ^^^^^ ...because it contains this associated `const`
15
+
16
+
error: aborting due to previous error
17
+
18
+
For more information about this error, try `rustc --explain E0038`.
0 commit comments