Advertisement
Guest User

Untitled

a guest
Sep 17th, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. error: unused import: `InternalSubsts`
  2. --> src/librustc_typeck/check/intrinsic.rs:9:24
  3. |
  4. 9 | use rustc::ty::subst::{InternalSubsts, Subst};
  5. | ^^^^^^^^^^^^^^
  6. |
  7. = note: `-D unused-imports` implied by `-D warnings`
  8.  
  9. error: unused import: `sym`
  10. --> src/librustc_typeck/check/intrinsic.rs:12:38
  11. |
  12. 12 | use syntax::symbol::{InternedString, sym};
  13. | ^^^
  14.  
  15. error: unused import: `rustc_serialize::Encodable`
  16. --> src/librustc_mir/interpret/operand.rs:22:5
  17. |
  18. 22 | use rustc_serialize::Encodable;
  19. | ^^^^^^^^^^^^^^^^^^^^^^^^^^
  20. |
  21. = note: `-D unused-imports` implied by `-D warnings`
  22.  
  23. error: aborting due to 2 previous errors
  24.  
  25. error: Could not compile `rustc_typeck`.
  26. warning: build failed, waiting for other jobs to finish...
  27. error[E0560]: struct `rustc::mir::VarBindingForm<'_>` has no field named `var_id`
  28. --> src/librustc_mir/build/mod.rs:846:37
  29. |
  30. 846 | var_id: var,
  31. | ^^^^^^ `rustc::mir::VarBindingForm<'_>` does not have this field
  32. |
  33. = note: available fields are: `binding_mode`, `opt_ty_info`, `opt_match_place`, `pat_span`
  34.  
  35. error[E0560]: struct `rustc::mir::VarBindingForm<'_>` has no field named `var_id`
  36. --> src/librustc_mir/build/matches/mod.rs:1740:17
  37. |
  38. 1740 | var_id,
  39. | ^^^^^^ `rustc::mir::VarBindingForm<'_>` does not have this field
  40. |
  41. = note: available fields are: `binding_mode`, `opt_ty_info`, `opt_match_place`, `pat_span`
  42.  
  43. error: aborting due to 3 previous errors
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement