extern crate sparse_bitfield;
use ;
// src/lib.rs::is_even was incorrectly flagging 6 as odd.
// 6 is not a power of 2, which later became a constraint
// we learned that we actually need the Bitfield to have a
// page size that is a POWER of two, not a multiple.