mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
16 lines
444 B
Rust
16 lines
444 B
Rust
trait Trait {
|
|
fn baz(&self, _: Self) {}
|
|
//~^ ERROR the size for values of type `Self` cannot be known
|
|
fn bat(&self) -> Self {}
|
|
//~^ ERROR mismatched types
|
|
//~| ERROR the size for values of type `Self` cannot be known
|
|
}
|
|
|
|
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() {}
|