1 2 3 4 5 6 7 8 9 10 11
//! Telemetry and in-app F12 developer HUD. #![forbid(unsafe_code)] #[cfg(test)] mod tests { #[test] fn crate_compiles() { // The crate compiling and this test running is the smoke test. // `#![forbid(unsafe_code)]` is enforced at compile time above. } }