rust/tests/ui/lint/dead-code/with-core-crate.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
272 B
Plaintext
Raw Normal View History

error: function `foo` is never used
--> $DIR/with-core-crate.rs:7:4
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | fn foo() {
| ^^^
2018-08-08 14:28:26 +02:00
|
2020-01-22 23:57:38 +00:00
note: the lint level is defined here
--> $DIR/with-core-crate.rs:1:9
2018-08-08 14:28:26 +02:00
|
LL | #![deny(dead_code)]
| ^^^^^^^^^
error: aborting due to previous error