summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0038.stderr
blob: 5c4d6d53c4626bc01c8d3685372c6696a77eb8ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error[E0038]: the trait `Trait` cannot be made into an object
  --> $DIR/E0038.rs:5:1
   |
LL |     fn foo(&self) -> Self;
   |        --- method `foo` references the `Self` type in its parameters or return type
...
LL | fn call_foo(x: Box<dyn Trait>) {
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Trait` cannot be made into an object

error: aborting due to previous error

For more information about this error, try `rustc --explain E0038`.