2014-12-15 21:11:09 -05:00
|
|
|
// Check that we correctly prevent users from making trait objects
|
|
|
|
|
// from traits where `Self : Sized`.
|
2014-11-01 20:21:55 -07:00
|
|
|
|
2024-02-09 12:17:55 +00:00
|
|
|
trait Bar: Sized {
|
2014-12-15 21:11:09 -05:00
|
|
|
fn bar<T>(&self, t: T);
|
2014-11-01 20:21:55 -07:00
|
|
|
}
|
|
|
|
|
|
2024-02-09 12:17:55 +00:00
|
|
|
fn make_bar<T: Bar>(t: &T) -> &dyn Bar {
|
2025-02-04 02:37:13 +00:00
|
|
|
//~^ ERROR E0038
|
2015-12-15 04:31:58 -05:00
|
|
|
t
|
2014-11-01 20:21:55 -07:00
|
|
|
}
|
|
|
|
|
|
2024-02-09 12:17:55 +00:00
|
|
|
fn main() {}
|