14 lines
334 B
C++
14 lines
334 B
C++
#include <cruft/util/tap.hpp>
|
|
|
|
#include <cruft/util/io.hpp>
|
|
#include <cruft/util/types/traits.hpp>
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
int main ()
|
|
{
|
|
cruft::TAP::logger tap;
|
|
tap.expect (is_container_v<cruft::mapped_file>, "mapped_file is a container");
|
|
return tap.status ();
|
|
}
|