| error: unused variable: `a` |
| --> $DIR/naked-functions-unused.rs:16:32 |
| | |
| LL | pub extern "C" fn function(a: usize, b: usize) -> usize { |
| | ^ help: if this is intentional, prefix it with an underscore: `_a` |
| | |
| note: the lint level is defined here |
| --> $DIR/naked-functions-unused.rs:5:9 |
| | |
| LL | #![deny(unused)] |
| | ^^^^^^ |
| = note: `#[deny(unused_variables)]` implied by `#[deny(unused)]` |
| |
| error: unused variable: `b` |
| --> $DIR/naked-functions-unused.rs:16:42 |
| | |
| LL | pub extern "C" fn function(a: usize, b: usize) -> usize { |
| | ^ help: if this is intentional, prefix it with an underscore: `_b` |
| |
| error: unused variable: `a` |
| --> $DIR/naked-functions-unused.rs:27:38 |
| | |
| LL | pub extern "C" fn associated(a: usize, b: usize) -> usize { |
| | ^ help: if this is intentional, prefix it with an underscore: `_a` |
| |
| error: unused variable: `b` |
| --> $DIR/naked-functions-unused.rs:27:48 |
| | |
| LL | pub extern "C" fn associated(a: usize, b: usize) -> usize { |
| | ^ help: if this is intentional, prefix it with an underscore: `_b` |
| |
| error: unused variable: `a` |
| --> $DIR/naked-functions-unused.rs:35:41 |
| | |
| LL | pub extern "C" fn method(&self, a: usize, b: usize) -> usize { |
| | ^ help: if this is intentional, prefix it with an underscore: `_a` |
| |
| error: unused variable: `b` |
| --> $DIR/naked-functions-unused.rs:35:51 |
| | |
| LL | pub extern "C" fn method(&self, a: usize, b: usize) -> usize { |
| | ^ help: if this is intentional, prefix it with an underscore: `_b` |
| |
| error: unused variable: `a` |
| --> $DIR/naked-functions-unused.rs:45:40 |
| | |
| LL | extern "C" fn trait_associated(a: usize, b: usize) -> usize { |
| | ^ help: if this is intentional, prefix it with an underscore: `_a` |
| |
| error: unused variable: `b` |
| --> $DIR/naked-functions-unused.rs:45:50 |
| | |
| LL | extern "C" fn trait_associated(a: usize, b: usize) -> usize { |
| | ^ help: if this is intentional, prefix it with an underscore: `_b` |
| |
| error: unused variable: `a` |
| --> $DIR/naked-functions-unused.rs:53:43 |
| | |
| LL | extern "C" fn trait_method(&self, a: usize, b: usize) -> usize { |
| | ^ help: if this is intentional, prefix it with an underscore: `_a` |
| |
| error: unused variable: `b` |
| --> $DIR/naked-functions-unused.rs:53:53 |
| | |
| LL | extern "C" fn trait_method(&self, a: usize, b: usize) -> usize { |
| | ^ help: if this is intentional, prefix it with an underscore: `_b` |
| |
| error: aborting due to 10 previous errors |
| |