rust/tests/ui/traits/vtable/vtable-multiple.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
634 B
Plaintext
Raw Normal View History

2021-10-03 15:53:02 +09:00
error: vtable entries for `<S as C>`: [
MetadataDropInPlace,
MetadataSize,
MetadataAlign,
Method(<S as A>::foo_a),
Method(<S as B>::foo_b),
TraitVPtr(<S as B>),
Method(<S as C>::foo_c),
]
--> $DIR/vtable-multiple.rs:16:1
|
2022-02-13 16:27:59 +01:00
LL | trait C: A + B {
| ^^^^^^^^^^^^^^
2021-07-17 15:44:19 +08:00
2021-10-03 15:53:02 +09:00
error: vtable entries for `<S as B>`: [
MetadataDropInPlace,
MetadataSize,
MetadataAlign,
Method(<S as B>::foo_b),
]
--> $DIR/vtable-multiple.rs:10:1
|
2022-02-13 16:27:59 +01:00
LL | trait B {
| ^^^^^^^
2021-07-17 15:44:19 +08:00
error: aborting due to 2 previous errors