blob: 0cd4243423dec3914c6162e2b9c84ac15477e931 [file]
// A basic library to be used in tests with no real purpose.
mod foo;
// Binary file with invalid UTF-8 sequence.
static BINARY_FILE: &[u8] = include_bytes!("binary_file");
pub fn sum(a: i32, b: i32) -> i32 {
a + b
}