mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-31 21:16:44 +00:00
6 lines
126 B
Rust
6 lines
126 B
Rust
//@ compile-flags: -g --crate-type=rlib -Cdwarf-version=4
|
|
|
|
pub fn check_is_even(number: &u64) -> bool {
|
|
number % 2 == 0
|
|
}
|