rust/tests/ui/dyn-compatibility/generics.rs

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

38 lines
627 B
Rust
Raw Normal View History

// Check that we correctly prevent users from making trait objects
// from traits with generic methods, unless `where Self : Sized` is
// present.
2014-11-02 03:21:55 +00:00
trait Bar {
fn bar<T>(&self, t: T);
2014-11-02 03:21:55 +00:00
}
trait Quux {
fn bar<T>(&self, t: T)
where Self : Sized;
}
2019-05-28 18:46:13 +00:00
fn make_bar<T:Bar>(t: &T) -> &dyn Bar {
2025-02-04 02:37:13 +00:00
//~^ ERROR E0038
t
2025-02-04 02:37:13 +00:00
//~^ ERROR E0038
}
2014-11-02 03:21:55 +00:00
2019-05-28 18:46:13 +00:00
fn make_bar_explicit<T:Bar>(t: &T) -> &dyn Bar {
2025-02-04 02:37:13 +00:00
//~^ ERROR E0038
2019-05-28 18:46:13 +00:00
t as &dyn Bar
2025-02-04 02:37:13 +00:00
//~^ ERROR E0038
//~| ERROR E0038
2014-11-02 03:21:55 +00:00
}
2019-05-28 18:46:13 +00:00
fn make_quux<T:Quux>(t: &T) -> &dyn Quux {
t
}
2019-05-28 18:46:13 +00:00
fn make_quux_explicit<T:Quux>(t: &T) -> &dyn Quux {
t as &dyn Quux
}
2014-11-02 03:21:55 +00:00
fn main() {
}