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 15:53:02 +09: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 23:29:53 +08:00
|
2022-02-13 16:27:59 +01:00
LL | trait B: A {
| ^^^^^^^^^^
2021-07-22 23:29:53 +08:00
error: aborting due to previous error