2024-05-29 16:29:08 +10:00
|
|
|
#include <cruft/util/tap.hpp>
|
2018-12-17 12:42:22 +11:00
|
|
|
|
2024-05-29 16:29:08 +10:00
|
|
|
#include <cruft/util/io.hpp>
|
|
|
|
#include <cruft/util/types/traits.hpp>
|
2018-12-17 12:42:22 +11:00
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
int main ()
|
|
|
|
{
|
|
|
|
cruft::TAP::logger tap;
|
|
|
|
tap.expect (is_container_v<cruft::mapped_file>, "mapped_file is a container");
|
|
|
|
return tap.status ();
|
|
|
|
}
|