Skip to content

Commit 45e5a58

Browse files
committed
Ignore dead code lint in test
warning: fields `x` and `y` are never read --> tests/test_ensure.rs:467:13 | 466 | pub struct Point { | ----- fields in this struct 467 | pub x: i32, | ^ 468 | pub y: i32, | ^ | = note: `Point` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis = note: `#[warn(dead_code)]` on by default
1 parent b3ceb70 commit 45e5a58

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/test_ensure.rs

+2
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,9 @@ fn test_trailer() {
464464
fn test_whitespace() {
465465
#[derive(Debug)]
466466
pub struct Point {
467+
#[allow(dead_code)]
467468
pub x: i32,
469+
#[allow(dead_code)]
468470
pub y: i32,
469471
}
470472

0 commit comments

Comments
 (0)