Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
clippy 0.0.201 - Docs.rs
[go: Go Back, main page]

clippy 0.0.201

A bunch of helpful lints to avoid common pitfalls in Rust
error: module has the same name as its containing module
 --> $DIR/module_inception.rs:7:9
  |
7 | /         mod bar {
8 | |             mod foo {}
9 | |         }
  | |_________^
  |
  = note: `-D module-inception` implied by `-D warnings`

error: module has the same name as its containing module
  --> $DIR/module_inception.rs:12:5
   |
12 | /     mod foo {
13 | |         mod bar {}
14 | |     }
   | |_____^

error: aborting due to 2 previous errors