rust/tests/ui/suggestions/object-unsafe-trait-should-use-where-sized.rs

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

14 lines
286 B
Rust
Raw Normal View History

2020-02-01 03:04:58 +00:00
//@ run-rustfix
#![allow(unused_variables, dead_code)]
trait Trait {
fn foo() where Self: Other, { }
fn bar(self: ()) {} //~ ERROR invalid `self` parameter type
}
fn bar(x: &dyn Trait) {} //~ ERROR the trait `Trait` cannot be made into an object
trait Other {}
fn main() {}