2020-01-20 01:27:37 +00:00
|
|
|
error: associated item referring to unboxed trait object for its own trait
|
|
|
|
--> $DIR/object-unsafe-trait-should-use-self.rs:3:13
|
|
|
|
|
|
|
|
|
LL | trait A: Sized {
|
|
|
|
| - in this trait
|
|
|
|
LL | fn f(a: A) -> A;
|
|
|
|
| ^ ^
|
|
|
|
|
|
2020-01-25 22:28:23 +00:00
|
|
|
help: you might have meant to use `Self` to refer to the implementing type
|
2020-01-20 01:27:37 +00:00
|
|
|
|
|
|
|
|
LL | fn f(a: Self) -> Self;
|
|
|
|
| ^^^^ ^^^^
|
|
|
|
|
|
|
|
error[E0038]: the trait `A` cannot be made into an object
|
|
|
|
--> $DIR/object-unsafe-trait-should-use-self.rs:3:13
|
|
|
|
|
|
|
|
|
LL | trait A: Sized {
|
2020-02-01 00:47:00 +00:00
|
|
|
| - ----- ...because it requires `Self: Sized`
|
|
|
|
| |
|
|
|
|
| this trait cannot be made into an object...
|
2020-01-20 01:27:37 +00:00
|
|
|
LL | fn f(a: A) -> A;
|
|
|
|
| ^ the trait `A` cannot be made into an object
|
|
|
|
|
|
|
|
error: associated item referring to unboxed trait object for its own trait
|
|
|
|
--> $DIR/object-unsafe-trait-should-use-self.rs:8:13
|
|
|
|
|
|
|
|
|
LL | trait B {
|
|
|
|
| - in this trait
|
|
|
|
LL | fn f(a: B) -> B;
|
|
|
|
| ^ ^
|
|
|
|
|
|
2020-01-25 22:28:23 +00:00
|
|
|
help: you might have meant to use `Self` to refer to the implementing type
|
2020-01-20 01:27:37 +00:00
|
|
|
|
|
|
|
|
LL | fn f(a: Self) -> Self;
|
|
|
|
| ^^^^ ^^^^
|
|
|
|
|
|
|
|
error[E0038]: the trait `B` cannot be made into an object
|
|
|
|
--> $DIR/object-unsafe-trait-should-use-self.rs:8:13
|
|
|
|
|
|
2020-02-01 00:47:00 +00:00
|
|
|
LL | trait B {
|
|
|
|
| - this trait cannot be made into an object...
|
2020-01-20 01:27:37 +00:00
|
|
|
LL | fn f(a: B) -> B;
|
|
|
|
| - ^ the trait `B` cannot be made into an object
|
|
|
|
| |
|
2020-02-01 00:47:00 +00:00
|
|
|
| ...because associated function `f` has no `self` parameter
|
|
|
|
|
|
2020-02-01 02:48:35 +00:00
|
|
|
help: consider turning `f` into a method by giving it a `&self` argument or constraining it so it does not apply to trait objects
|
|
|
|
|
|
|
|
|
LL | fn f(a: B) -> B where Self: Sized;
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
2020-01-20 01:27:37 +00:00
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0038`.
|