()
| 2 | |
| 3 | #[cfg(not(target_os = "linux"))] |
| 4 | fn main() -> Result<()> { |
| 5 | eprintln!("This example only runs on Linux right now"); |
| 6 | Ok(()) |
| 7 | } |
| 8 | |
| 9 | #[cfg(target_os = "linux")] |
| 10 | fn main() -> Result<()> { |
nothing calls this directly
no test coverage detected