rust/src/test/ui/object-safety/object-safety-mentions-Self.rs

37 lines
639 B
Rust
Raw Normal View History

// Check that we correctly prevent users from making trait objects
// form traits that make use of `Self` in an argument or return
// position, unless `where Self : Sized` is present..
trait Bar {
fn bar(&self, x: &Self);
}
trait Baz {
fn bar(&self) -> Self;
}
trait Quux {
fn get(&self, s: &Self) -> Self where Self : Sized;
}
2019-05-28 13:46:13 -05:00
fn make_bar<T:Bar>(t: &T) -> &dyn Bar {
//~^ ERROR E0038
loop { }
}
2019-05-28 13:46:13 -05:00
fn make_baz<T:Baz>(t: &T) -> &dyn Baz {
//~^ ERROR E0038
t
}
2019-05-28 13:46:13 -05:00
fn make_quux<T:Quux>(t: &T) -> &dyn Quux {
t
}
2019-05-28 13:46:13 -05:00
fn make_quux_explicit<T:Quux>(t: &T) -> &dyn Quux {
t as &dyn Quux
}
fn main() {
}