| warning: unused attribute |
| --> $DIR/library.rs:2:1 |
| | |
| LL | #![deny(dead_code_pub_in_binary)] |
| | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove this attribute |
| | |
| = note: the `dead_code_pub_in_binary` lint has no effect in library crates |
| = note: requested on the command line with `-W unused-attributes` |
| |
| error: function `unused_priv_fn` is never used |
| --> $DIR/library.rs:9:4 |
| | |
| LL | fn unused_priv_fn() {} |
| | ^^^^^^^^^^^^^^ |
| | |
| note: the lint level is defined here |
| --> $DIR/library.rs:1:9 |
| | |
| LL | #![deny(dead_code)] |
| | ^^^^^^^^^ |
| |
| error: aborting due to 1 previous error; 1 warning emitted |
| |