10 lines
105 B
Rust
Raw Permalink Normal View History

#![no_std]
#[cfg(test)]
mod tests {
#[test]
fn simple() {
assert_eq!(1 + 1, 2);
}
}