2015-04-04 05:42:24 -04:00
|
|
|
// Test that we give suitable error messages when the user attempts to
|
|
|
|
// impl a trait `Trait` for its own object type.
|
|
|
|
|
2018-12-29 00:11:13 +01:00
|
|
|
// revisions: old re
|
|
|
|
|
|
|
|
#![cfg_attr(re, feature(re_rebalance_coherence))]
|
|
|
|
|
2015-04-04 05:42:24 -04:00
|
|
|
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 14:46:13 -04:00
|
|
|
impl Foo for dyn Baz { }
|
2018-12-29 00:11:13 +01:00
|
|
|
//[old]~^ ERROR E0371
|
|
|
|
//[re]~^^ ERROR E0371
|
2019-05-28 14:46:13 -04:00
|
|
|
impl Bar for dyn Baz { }
|
2018-12-29 00:11:13 +01:00
|
|
|
//[old]~^ ERROR E0371
|
|
|
|
//[re]~^^ ERROR E0371
|
2019-05-28 14:46:13 -04:00
|
|
|
impl Baz for dyn Baz { }
|
2018-12-29 00:11:13 +01:00
|
|
|
//[old]~^ ERROR E0371
|
|
|
|
//[re]~^^ ERROR E0371
|
2015-04-04 05:42:24 -04:00
|
|
|
|
|
|
|
// But other random traits are:
|
|
|
|
trait Other { }
|
2019-05-28 14:46:13 -04:00
|
|
|
impl Other for dyn Baz { } // OK, Other not a supertrait of Baz
|
2015-04-04 05:42:24 -04:00
|
|
|
|
|
|
|
fn main() { }
|