Advertisement
Guest User

Untitled

a guest
Jun 14th, 2017
10
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.13 KB | None | 0 0
  1. :~/repos/rust-clippy|master$ cargo test
  2.    Compiling clippy_lints v0.0.139 (file:///home/paul/repos/rust-clippy/clippy_lints)
  3.    Compiling clippy v0.0.139 (file:///home/paul/repos/rust-clippy)
  4. warning: Constants have by default a `'static` lifetime
  5. --> tests/cc_seme.rs:1:1
  6.  |
  7. 1 | #![feature(plugin)]
  8.  | ^
  9.  |
  10.  = note: #[warn(const_static_lifetime)] on by default
  11.  = help: consider removing the `'static`
  12.   = help: for further information visit https://github.com/Manishearth/rust-clippy/wiki#const_static_lifetime
  13.  
  14. error: Constants have by default a `'static` lifetime
  15. --> tests/ice_exacte_size.rs:1:1
  16.  |
  17. 1 | #![feature(plugin)]
  18.  | ^
  19.  |
  20.  = note: #[deny(const_static_lifetime)] implied by #[deny(clippy)]
  21. note: lint level defined here
  22. --> tests/ice_exacte_size.rs:3:9
  23.  |
  24. 3 | #![deny(clippy)]
  25.  |         ^^^^^^
  26.  = help: consider removing the `'static`
  27.   = help: for further information visit https://github.com/Manishearth/rust-clippy/wiki#const_static_lifetime
  28.  
  29. error: aborting due to previous error(s)
  30.  
  31. error: Could not compile `clippy`.
  32. Build failed, waiting for other jobs to finish...
  33. error: build failed
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement