//! Test, that this crate can be used in `#![no_std]` environments by default.
// This has to be an integration test, as we need to compile a separate crate
// with the `#![no_std]` attribute, which is not possible with plain unit tests
// (note, that the root crate has `#![cfg_attr(not(test), no_std)]`, i.e. it
// requires `std` for tests, just not for the normal API).
use PartialArray;