rust/tests/ui-cargo/cargo_rust_version/fail_file_attr/Cargo.stderr

20 lines
546 B
Plaintext
Raw Normal View History

error: unnecessary structure name repetition
2023-04-20 10:19:36 -05:00
--> src/main.rs:11:21
|
2023-04-20 10:19:36 -05:00
11 | pub fn bar() -> Foo {
| ^^^ help: use the applicable keyword: `Self`
|
note: the lint level is defined here
2023-04-20 10:19:36 -05:00
--> src/main.rs:6:9
|
2023-04-20 10:19:36 -05:00
6 | #![deny(clippy::use_self)]
| ^^^^^^^^^^^^^^^^
error: unnecessary structure name repetition
2023-04-20 10:19:36 -05:00
--> src/main.rs:12:9
|
2023-04-20 10:19:36 -05:00
12 | Foo
| ^^^ help: use the applicable keyword: `Self`
2023-04-20 10:19:36 -05:00
error: could not compile `fail-file-attr` (bin "fail-file-attr") due to 2 previous errors