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

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

17 lines
356 B
Plaintext
Raw Normal View History

2021-10-03 01:53:02 -05:00
error: vtable entries for `<S as B>`: [
MetadataDropInPlace,
MetadataSize,
MetadataAlign,
Method(<S as A>::foo_a1),
Vacant,
Method(<S as B>::foo_b1),
Vacant,
]
--> $DIR/vtable-vacant.rs:15:1
2021-07-22 10:29:53 -05:00
|
2022-02-13 09:27:59 -06:00
LL | trait B: A {
| ^^^^^^^^^^
2021-07-22 10:29:53 -05:00
error: aborting due to previous error