aboutsummaryrefslogtreecommitdiff
path: root/vendor/qoi/tests/test_misc.rs
blob: 720adf48da802c0212320a5565bae748eda23c35 (plain) (blame)
1
2
3
4
5
6
#[test]
fn test_new_encoder() {
    // this used to fail due to `Bytes` not being `pub`
    let arr = [0u8];
    let _ = qoi::Decoder::new(&arr[..]);
}