rust/src/test/ui/lint/dead-code/tuple-struct-field.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
898 B
Rust
Raw Normal View History

2022-07-25 15:36:03 -05:00
#![deny(unused_tuple_struct_fields)]
//~^ NOTE: the lint level is defined here
2022-07-25 15:36:03 -05:00
use std::marker::PhantomData;
const LEN: usize = 4;
2022-07-25 15:36:03 -05:00
struct SingleUnused(i32, [u8; LEN], String);
//~^ ERROR: field `1` is never read
//~| NOTE: field in this struct
//~| HELP: consider changing the field to be of unit type
struct MultipleUnused(i32, f32, String, u8);
//~^ ERROR: fields `0`, `1`, `2` and `3` are never read
//~| NOTE: fields in this struct
//~| HELP: consider changing the fields to be of unit type
struct GoodUnit(());
struct GoodPhantom(PhantomData<i32>);
struct Void;
struct GoodVoid(Void);
fn main() {
2022-07-25 15:36:03 -05:00
let w = SingleUnused(42, [0, 1, 2, 3], "abc".to_string());
let _ = w.0;
let _ = w.2;
let m = MultipleUnused(42, 3.14, "def".to_string(), 4u8);
let gu = GoodUnit(());
let gp = GoodPhantom(PhantomData);
let gv = GoodVoid(Void);
let _ = (gu, gp, gv, m);
}