zachs18_testing_lib/
lib.rs

1#![allow(unused)]
2
3struct Thing(u64);
4
5fn foo() {
6    let thing = Thing(42);
7    thing.0usize;
8}