()
| 159 | |
| 160 | #[test] |
| 161 | fn trait_bounds_compile() { |
| 162 | let codec = make_codec(8); |
| 163 | let result = use_vector_codec( |
| 164 | &codec, |
| 165 | &[1.0, -1.0, 1.0, -1.0, 1.0, -1.0, 1.0, -1.0], |
| 166 | &[-1.0, 1.0, -1.0, 1.0, -1.0, 1.0, -1.0, 1.0], |
| 167 | ); |
| 168 | assert!(result.is_finite()); |
| 169 | } |
| 170 | } |
nothing calls this directly
no test coverage detected