2025-01-10 20:09:10 +00:00
|
|
|
error: vtable entries: [
|
|
|
|
|
MetadataDropInPlace,
|
|
|
|
|
MetadataSize,
|
|
|
|
|
MetadataAlign,
|
|
|
|
|
Method(<() as Supertrait<()>>::_print_numbers),
|
|
|
|
|
Method(<() as Middle<()>>::say_hello),
|
|
|
|
|
]
|
2024-12-16 02:29:00 +01:00
|
|
|
--> $DIR/multiple-supertraits-modulo-normalization-vtable.rs:29:1
|
2025-01-10 20:09:10 +00:00
|
|
|
|
|
|
|
|
|
LL | impl Trait for () {}
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
|
error: vtable entries: [
|
|
|
|
|
MetadataDropInPlace,
|
|
|
|
|
MetadataSize,
|
|
|
|
|
MetadataAlign,
|
|
|
|
|
Method(<dyn Middle<()> as Supertrait<()>>::_print_numbers - shim(reify)),
|
|
|
|
|
Method(<dyn Middle<()> as Middle<()>>::say_hello - shim(reify)),
|
|
|
|
|
]
|
2024-12-16 02:29:00 +01:00
|
|
|
--> $DIR/multiple-supertraits-modulo-normalization-vtable.rs:33:1
|
2025-01-10 20:09:10 +00:00
|
|
|
|
|
|
|
|
|
LL | type Virtual = dyn Middle<()>;
|
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|