about summary refs log tree commit diff
path: root/tests/run-make/checksum-freshness/lib.rs
blob: 7bc6757959b1d0680931547b7f0e30f504627a37 (plain)
1
2
3
4
5
6
7
// A basic library to be used in tests with no real purpose.

mod foo;

pub fn sum(a: i32, b: i32) -> i32 {
    a + b
}