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