http-types/tests/test.rs

7 lines
118 B
Rust

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