Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
tests
/
run-make
/
checksum-freshness
/
lib.rs
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
}