1 2 3 4 5 6 7 8 9 10 11 12
#![no_std] pub fn introduce_locusts(){} #[cfg(test)] mod tests { use super::*; #[test] fn test() { introduce_locusts(); } }