1 2 3 4 5 6
use std::error::Error; #[test] fn should_work() -> Result<(), Box<dyn Error + Send + Sync + 'static>> { Ok(()) }