//! Smoke tests confirming that the pre-0.2 `*Index` type aliases still
//! compile and are reachable as `ordvec::*Index`. These names were
//! deprecated in 0.2.0 (the OrdVec ontology rebrand); they will be
//! removed in a future release.
#![allow(deprecated)]#[test]fndeprecated_index_aliases_compile(){// Rank(dim)
let_=ordvec::RankIndex::new(64);// RankQuant(dim, bits)
let_=ordvec::RankQuantIndex::new(64,2);// Bitmap(dim, n_top)
let_=ordvec::BitmapIndex::new(64,16);// SignBitmap(dim)
let_=ordvec::SignBitmapIndex::new(64);}#[cfg(feature ="experimental")]#[test]fndeprecated_experimental_alias_compiles(){// MultiBucketBitmap(dim, bits)
let_=ordvec::MultiBucketBitmapIndex::new(64,2);}