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

34 lines
405 B
Rust
Raw Normal View History

2021-07-17 02:44:19 -05:00
// build-fail
#![feature(rustc_attrs)]
#[rustc_dump_vtable]
trait A {
fn foo_a(&self) {}
}
#[rustc_dump_vtable]
trait B {
2021-10-03 01:53:02 -05:00
//~^ error vtable
2021-07-17 02:44:19 -05:00
fn foo_b(&self) {}
}
#[rustc_dump_vtable]
trait C: A + B {
2021-10-03 01:53:02 -05:00
//~^ error vtable
2021-07-17 02:44:19 -05:00
fn foo_c(&self) {}
}
struct S;
impl A for S {}
impl B for S {}
impl C for S {}
fn foo(c: &dyn C) {}
fn bar(c: &dyn B) {}
2021-07-17 02:44:19 -05:00
fn main() {
foo(&S);
bar(&S);
2021-07-17 02:44:19 -05:00
}