1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-06-26 18:51:00 +02:00

Make User pub to avoid unused code warnings when running tests (#822)

This commit is contained in:
Andrew Walbran
2023-06-21 15:08:37 +01:00
committed by GitHub
parent a311edb3fb
commit 0202ba2fc9

View File

@ -1,4 +1,4 @@
struct User {
pub struct User {
name: String,
age: u32,
weight: f32,