David Tolnay
|
604e47ccbd
|
Ignore needless_late_init Clippy lint in test
error: unneeded late initalization
--> tests/test_generics.rs:90:5
|
90 | let mut instance: EnumCompound<DisplayOnly, DebugOnly, NoFormat>;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_late_init
help: declare `instance` here
|
92 | let mut instance: EnumCompound<DisplayOnly, DebugOnly, NoFormat> = EnumCompound::DisplayDebug(DisplayOnly, DebugOnly);
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2021-12-07 18:36:06 -08:00 |
|