rust/tests/run-make/checksum-freshness/lib.rs
2024-10-01 21:24:07 -06:00

8 lines
120 B
Rust

// A basic library to be used in tests with no real purpose.
mod foo;
pub fn sum(a: i32, b: i32) -> i32 {
a + b
}