rust/tests/ui/issues/issue-50781.rs

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

20 lines
395 B
Rust
Raw Normal View History

#![deny(where_clauses_object_safety)]
trait Trait {}
trait X {
fn foo(&self) where Self: Trait; //~ ERROR the trait `X` cannot be made into an object
//~^ WARN this was previously accepted by the compiler but is being phased out
}
impl X for () {
fn foo(&self) {}
}
impl Trait for dyn X {}
pub fn main() {
// Check that this does not segfault.
2019-05-28 18:46:13 +00:00
<dyn X as X>::foo(&());
}