2014-12-16 02:11:09 +00:00
|
|
|
// Check that we correctly prevent users from making trait objects
|
|
|
|
// from traits where `Self : Sized`.
|
2019-01-08 21:14:04 +00:00
|
|
|
//
|
|
|
|
// revisions: curr object_safe_for_dispatch
|
|
|
|
|
|
|
|
#![cfg_attr(object_safe_for_dispatch, feature(object_safe_for_dispatch))]
|
2014-11-02 03:21:55 +00:00
|
|
|
|
2014-12-16 02:11:09 +00:00
|
|
|
trait Bar : Sized {
|
|
|
|
fn bar<T>(&self, t: T);
|
2014-11-02 03:21:55 +00:00
|
|
|
}
|
|
|
|
|
2019-05-28 18:46:13 +00:00
|
|
|
fn make_bar<T:Bar>(t: &T) -> &dyn Bar {
|
2019-01-08 21:14:04 +00:00
|
|
|
//[curr]~^ ERROR E0038
|
2015-12-15 09:31:58 +00:00
|
|
|
t
|
2019-01-08 21:14:04 +00:00
|
|
|
//[object_safe_for_dispatch]~^ ERROR E0038
|
2014-11-02 03:21:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
}
|