2015-11-03 20:00:20 -05:00
|
|
|
#include "tz.h"
|
|
|
|
|
#include <type_traits>
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
main()
|
|
|
|
|
{
|
|
|
|
|
using namespace std;
|
|
|
|
|
using namespace date;
|
2016-04-21 16:08:06 -04:00
|
|
|
static_assert( is_nothrow_destructible<time_zone>{}, "");
|
|
|
|
|
static_assert(!is_default_constructible<time_zone>{}, "");
|
|
|
|
|
static_assert(!is_copy_constructible<time_zone>{}, "");
|
|
|
|
|
static_assert(!is_copy_assignable<time_zone>{}, "");
|
|
|
|
|
static_assert( is_nothrow_move_constructible<time_zone>{}, "");
|
|
|
|
|
static_assert( is_nothrow_move_assignable<time_zone>{}, "");
|
2015-11-03 20:00:20 -05:00
|
|
|
}
|