mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
19 lines
392 B
Rust
19 lines
392 B
Rust
trait Trait {}
|
|
|
|
trait X {
|
|
fn foo(&self) where Self: Trait;
|
|
}
|
|
|
|
impl X for () {
|
|
fn foo(&self) {}
|
|
}
|
|
|
|
impl Trait for dyn X {}
|
|
//~^ ERROR the trait `X` cannot be made into an object
|
|
|
|
pub fn main() {
|
|
// Check that this does not segfault.
|
|
<dyn X as X>::foo(&());
|
|
//~^ ERROR the trait `X` cannot be made into an object
|
|
//~| ERROR the trait `X` cannot be made into an object
|
|
}
|