Ignore warning on unused struct in test

warning: struct `OptSourceNoBacktrace` is never constructed
      --> tests/test_option.rs:10:16
       |
    10 |     pub struct OptSourceNoBacktrace {
       |                ^^^^^^^^^^^^^^^^^^^^
       |
       = note: `#[warn(dead_code)]` on by default

    warning: struct `OptSourceAlwaysBacktrace` is never constructed
      --> tests/test_option.rs:17:16
       |
    17 |     pub struct OptSourceAlwaysBacktrace {
       |                ^^^^^^^^^^^^^^^^^^^^^^^^

    warning: struct `NoSourceOptBacktrace` is never constructed
      --> tests/test_option.rs:25:16
       |
    25 |     pub struct NoSourceOptBacktrace {
       |                ^^^^^^^^^^^^^^^^^^^^

    warning: struct `AlwaysSourceOptBacktrace` is never constructed
      --> tests/test_option.rs:32:16
       |
    32 |     pub struct AlwaysSourceOptBacktrace {
       |                ^^^^^^^^^^^^^^^^^^^^^^^^

    warning: struct `OptSourceOptBacktrace` is never constructed
      --> tests/test_option.rs:40:16
       |
    40 |     pub struct OptSourceOptBacktrace {
       |                ^^^^^^^^^^^^^^^^^^^^^
This commit is contained in:
David Tolnay 2024-06-07 19:36:27 -07:00
parent f2824ae379
commit 4db08b10a3
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -7,6 +7,7 @@ pub mod structs {
#[derive(Error, Debug)]
#[error("...")]
#[allow(dead_code)]
pub struct OptSourceNoBacktrace {
#[source]
source: Option<anyhow::Error>,
@ -14,6 +15,7 @@ pub mod structs {
#[derive(Error, Debug)]
#[error("...")]
#[allow(dead_code)]
pub struct OptSourceAlwaysBacktrace {
#[source]
source: Option<anyhow::Error>,
@ -22,6 +24,7 @@ pub mod structs {
#[derive(Error, Debug)]
#[error("...")]
#[allow(dead_code)]
pub struct NoSourceOptBacktrace {
#[backtrace]
backtrace: Option<Backtrace>,
@ -29,6 +32,7 @@ pub mod structs {
#[derive(Error, Debug)]
#[error("...")]
#[allow(dead_code)]
pub struct AlwaysSourceOptBacktrace {
source: anyhow::Error,
#[backtrace]
@ -37,6 +41,7 @@ pub mod structs {
#[derive(Error, Debug)]
#[error("...")]
#[allow(dead_code)]
pub struct OptSourceOptBacktrace {
#[source]
source: Option<anyhow::Error>,