1
Fork 0
rust/src/test/ui/coherence/coherence-impl-trait-for-trait.rs

28 lines
639 B
Rust
Raw Normal View History

// Test that we give suitable error messages when the user attempts to
// impl a trait `Trait` for its own object type.
// revisions: old re
#![cfg_attr(re, feature(re_rebalance_coherence))]
trait Foo { fn dummy(&self) { } }
trait Bar: Foo { }
trait Baz: Bar { }
// Supertraits of Baz are not legal:
2019-05-28 14:46:13 -04:00
impl Foo for dyn Baz { }
//[old]~^ ERROR E0371
//[re]~^^ ERROR E0371
2019-05-28 14:46:13 -04:00
impl Bar for dyn Baz { }
//[old]~^ ERROR E0371
//[re]~^^ ERROR E0371
2019-05-28 14:46:13 -04:00
impl Baz for dyn Baz { }
//[old]~^ ERROR E0371
//[re]~^^ ERROR E0371
// 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
fn main() { }