rust/tests/ui/suggestions/object-unsafe-trait-references-self.rs

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

16 lines
444 B
Rust
Raw Normal View History

2020-02-01 03:04:58 +00:00
trait Trait {
fn baz(&self, _: Self) {}
//~^ ERROR the size for values of type `Self` cannot be known
2020-02-01 03:04:58 +00:00
fn bat(&self) -> Self {}
//~^ ERROR mismatched types
//~| ERROR the size for values of type `Self` cannot be known
2020-02-01 03:04:58 +00:00
}
fn bar(x: &dyn Trait) {} //~ ERROR the trait `Trait` cannot be made into an object
trait Other: Sized {}
fn foo(x: &dyn Other) {} //~ ERROR the trait `Other` cannot be made into an object
fn main() {}