blob: 32253c3c23608b694a4c41ec6cdb20574fc3e491 [file] [log] [blame] [edit]
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
}