compiler-builtins-zynq/testcrate/src/lib.rs

10 lines
137 B
Rust

#![cfg_attr(feature = "no_std", no_std)]
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}