rust/tests/ui/partial_pub_fields.rs
TennyZhuang 7ac97b69fc Add new lint partial_pub_fields
Signed-off-by: TennyZhuang <zty0826@gmail.com>
2022-10-16 16:03:50 +08:00

21 lines
349 B
Rust

#![allow(unused)]
#![warn(clippy::partial_pub_fields)]
fn main() {
// test code goes here
use std::collections::HashMap;
#[derive(Default)]
pub struct FileSet {
files: HashMap<String, u32>,
pub paths: HashMap<u32, String>,
}
pub struct Color {
pub r: u8,
pub g: u8,
b: u8,
}
}