use collection_tools as the_module;
#[ cfg( feature = "collection_constructors" ) ]
#[ test ]
fn heap_macro_accessible_from_root()
{
let _heap = the_module::heap!{ 1, 2, 3 };
}
#[ cfg( feature = "collection_constructors" ) ]
#[ test ]
fn heap_macro_accessible_from_exposed()
{
let _heap = the_module::exposed::heap!{ 1, 2, 3 };
}
#[ cfg( feature = "collection_into_constructors" ) ]
#[ test ]
fn into_heap_macro_accessible_from_root()
{
let _heap: the_module::BinaryHeap< i32 > = the_module::into_heap!{ 1, 2, 3 };
}
#[ cfg( feature = "collection_into_constructors" ) ]
#[ test ]
fn into_heap_macro_accessible_from_exposed()
{
let _heap: the_module::BinaryHeap< i32 > = the_module::exposed::into_heap!{ 1, 2, 3 };
}