mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
40 lines
789 B
Rust
40 lines
789 B
Rust
// Check that we correctly prevent users from making trait objects
|
|
// from traits with generic methods, unless `where Self : Sized` is
|
|
// present.
|
|
// revisions: curr object_safe_for_dispatch
|
|
|
|
#![cfg_attr(object_safe_for_dispatch, feature(object_safe_for_dispatch))]
|
|
|
|
|
|
trait Bar {
|
|
fn bar<T>(&self, t: T);
|
|
}
|
|
|
|
trait Quux {
|
|
fn bar<T>(&self, t: T)
|
|
where Self : Sized;
|
|
}
|
|
|
|
fn make_bar<T:Bar>(t: &T) -> &dyn Bar {
|
|
//[curr]~^ ERROR E0038
|
|
t
|
|
//[object_safe_for_dispatch]~^ ERROR E0038
|
|
}
|
|
|
|
fn make_bar_explicit<T:Bar>(t: &T) -> &dyn Bar {
|
|
//[curr]~^ ERROR E0038
|
|
t as &dyn Bar
|
|
//[object_safe_for_dispatch]~^ ERROR E0038
|
|
}
|
|
|
|
fn make_quux<T:Quux>(t: &T) -> &dyn Quux {
|
|
t
|
|
}
|
|
|
|
fn make_quux_explicit<T:Quux>(t: &T) -> &dyn Quux {
|
|
t as &dyn Quux
|
|
}
|
|
|
|
fn main() {
|
|
}
|