rust/tests/ui/dyn-compatibility/sized-2.rs

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

22 lines
414 B
Rust
Raw Normal View History

// Check that we correctly prevent users from making trait objects
// from traits where `Self : Sized`.
//
//@ revisions: curr dyn_compatible_for_dispatch
#![cfg_attr(dyn_compatible_for_dispatch, feature(dyn_compatible_for_dispatch))]
2014-11-02 03:21:55 +00:00
trait Bar
where Self : 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 {
//[curr]~^ ERROR E0038
t
//~^ ERROR E0038
2014-11-02 03:21:55 +00:00
}
fn main() {
}