os-rust/tests/ui/object-safety/object-safety-sized.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
388 B
Rust
Raw Normal View History

// Check that we correctly prevent users from making trait objects
// from traits where `Self : Sized`.
//
// revisions: curr object_safe_for_dispatch
#![cfg_attr(object_safe_for_dispatch, feature(object_safe_for_dispatch))]
2014-11-01 20:21:55 -07:00
trait Bar: Sized {
fn bar<T>(&self, t: T);
2014-11-01 20:21:55 -07:00
}
fn make_bar<T: Bar>(t: &T) -> &dyn Bar {
//[curr]~^ ERROR E0038
t
//~^ ERROR E0038
2014-11-01 20:21:55 -07:00
}
fn main() {}