#![allow(unused_variables)] #![feature(allocator_api)] #![feature(btreemap_alloc)] #![allow(unused_mut)] fn main() { use std::collections::BTreeSet; use std::alloc::Global; let mut set: BTreeSet = BTreeSet::new_in(Global); }