Guest User

Untitled

a guest
Jun 17th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 KB | None | 0 0
  1. Compiling proc-macro2 v0.3.6
  2. Compiling num-traits v0.1.43
  3. Compiling arrayvec v0.4.7
  4. error[E0433]: failed to resolve. Could not find `Op` in `proc_macro`
  5. --> /home/yatekii/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.3.6/src/unstable.rs:72:42
  6. |
  7. 72 | let mut op = proc_macro::Op::new(tt.op(), spacing);
  8. | ^^ Could not find `Op` in `proc_macro`
  9.  
  10. Compiling syn v0.10.8
  11. Compiling unreachable v0.1.1
  12. error[E0433]: failed to resolve. Could not find `Term` in `proc_macro`
  13. --> /home/yatekii/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.3.6/src/unstable.rs:279:31
  14. |
  15. 279 | term: proc_macro::Term::new(string, span.0),
  16. | ^^^^ Could not find `Term` in `proc_macro`
  17.  
  18. error[E0412]: cannot find type `Term` in module `proc_macro`
  19. --> /home/yatekii/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.3.6/src/unstable.rs:273:23
  20. |
  21. 273 | term: proc_macro::Term,
  22. | ^^^^ not found in `proc_macro`
  23. help: possible candidates are found in other modules, you can import them into scope
  24. |
  25. 3 | use Term;
  26. |
  27. 3 | use imp::Term;
  28. |
  29.  
  30. Compiling unreachable v1.0.0
  31. error[E0599]: no variant named `Op` found for type `proc_macro::TokenTree` in the current scope
  32. --> /home/yatekii/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.3.6/src/unstable.rs:132:13
  33. |
  34. 132 | proc_macro::TokenTree::Op(tt) => {
  35. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ variant not found in `proc_macro::TokenTree`
  36.  
  37. error[E0599]: no variant named `Term` found for type `proc_macro::TokenTree` in the current scope
  38. --> /home/yatekii/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.3.6/src/unstable.rs:141:13
  39. |
  40. 141 | proc_macro::TokenTree::Term(s) => {
  41. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ variant not found in `proc_macro::TokenTree`
  42.  
  43. Compiling heapsize v0.4.2
  44. Compiling regex-syntax v0.5.3
  45. Compiling regex v0.2.10
  46. Compiling stb_truetype v0.2.2
  47. error: aborting due to 5 previous errors
  48.  
  49. Some errors occurred: E0412, E0433, E0599.
  50. For more information about an error, try `rustc --explain E0412`.
  51. Compiling humantime v1.1.1
  52. error: Could not compile `proc-macro2`.
  53. warning: build failed, waiting for other jobs to finish...
Add Comment
Please, Sign In to add comment