E0033.stderr 814 字节
Newer Older
E
Esteban Küber 已提交
1 2 3
error[E0423]: expected value, found trait `SomeTrait`
  --> $DIR/E0033.rs:16:33
   |
V
Vadim Petrochenkov 已提交
4
LL |     let trait_obj: &SomeTrait = SomeTrait;
E
Esteban Küber 已提交
5 6 7 8 9
   |                                 ^^^^^^^^^ not a value

error[E0038]: the trait `SomeTrait` cannot be made into an object
  --> $DIR/E0033.rs:16:20
   |
V
Vadim Petrochenkov 已提交
10
LL |     let trait_obj: &SomeTrait = SomeTrait;
E
Esteban Küber 已提交
11 12 13 14
   |                    ^^^^^^^^^^ the trait `SomeTrait` cannot be made into an object
   |
   = note: method `foo` has no receiver

15
error[E0033]: type `&dyn SomeTrait` cannot be dereferenced
E
Esteban Küber 已提交
16 17
  --> $DIR/E0033.rs:21:9
   |
V
Vadim Petrochenkov 已提交
18
LL |     let &invalid = trait_obj;
19
   |         ^^^^^^^^ type `&dyn SomeTrait` cannot be dereferenced
E
Esteban Küber 已提交
20 21 22

error: aborting due to 3 previous errors

G
Guillaume Gomez 已提交
23 24
Some errors occurred: E0033, E0038, E0423.
For more information about an error, try `rustc --explain E0033`.