2015-04-04 09:42:24 +00:00
|
|
|
// Test that we give suitable error messages when the user attempts to
|
|
|
|
// impl a trait `Trait` for its own object type.
|
|
|
|
|
|
|
|
trait Foo { fn dummy(&self) { } }
|
|
|
|
trait Bar: Foo { }
|
|
|
|
trait Baz: Bar { }
|
|
|
|
|
2015-05-14 20:42:35 +00:00
|
|
|
// Supertraits of Baz are not legal:
|
2019-05-28 18:46:13 +00:00
|
|
|
impl Foo for dyn Baz { }
|
2019-10-26 15:28:02 +00:00
|
|
|
//~^ ERROR E0371
|
2019-05-28 18:46:13 +00:00
|
|
|
impl Bar for dyn Baz { }
|
2019-10-26 15:28:02 +00:00
|
|
|
//~^ ERROR E0371
|
2019-05-28 18:46:13 +00:00
|
|
|
impl Baz for dyn Baz { }
|
2019-10-26 15:28:02 +00:00
|
|
|
//~^ ERROR E0371
|
2015-04-04 09:42:24 +00:00
|
|
|
|
|
|
|
// But other random traits are:
|
|
|
|
trait Other { }
|
2019-05-28 18:46:13 +00:00
|
|
|
impl Other for dyn Baz { } // OK, Other not a supertrait of Baz
|
2015-04-04 09:42:24 +00:00
|
|
|
|
|
|
|
fn main() { }
|