mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
15 lines
226 B
Rust
15 lines
226 B
Rust
// aux-build:not-object-safe.rs
|
|
|
|
extern crate not_object_safe;
|
|
|
|
pub trait B where
|
|
Self: not_object_safe::A,
|
|
{
|
|
fn f2(&self);
|
|
}
|
|
|
|
struct S(Box<dyn B>);
|
|
//~^ ERROR the trait `B` cannot be made into an object
|
|
|
|
fn main() {}
|