1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-04-05 18:15:49 +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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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