2015-04-04 04:42:24 -05: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 15:42:35 -05:00
|
|
|
// Supertraits of Baz are not legal:
|
2019-05-28 13:46:13 -05:00
|
|
|
impl Foo for dyn Baz { }
|
2019-10-26 10:28:02 -05:00
|
|
|
//~^ ERROR E0371
|
2019-05-28 13:46:13 -05:00
|
|
|
impl Bar for dyn Baz { }
|
2019-10-26 10:28:02 -05:00
|
|
|
//~^ ERROR E0371
|
2019-05-28 13:46:13 -05:00
|
|
|
impl Baz for dyn Baz { }
|
2019-10-26 10:28:02 -05:00
|
|
|
//~^ ERROR E0371
|
2015-04-04 04:42:24 -05:00
|
|
|
|
|
|
|
// But other random traits are:
|
|
|
|
trait Other { }
|
2019-05-28 13:46:13 -05:00
|
|
|
impl Other for dyn Baz { } // OK, Other not a supertrait of Baz
|
2015-04-04 04:42:24 -05:00
|
|
|
|
|
|
|
fn main() { }
|