summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/hana/example/type/sizeof.cpp
blob: 300015dd282f7885dc78ce4cb54fb8dc9e4f20bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright Louis Dionne 2013-2017
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)

#include <boost/hana/equal.hpp>
#include <boost/hana/type.hpp>
namespace hana = boost::hana;


struct X { };
static_assert(hana::sizeof_(hana::type_c<X>) == sizeof(X), "");

static_assert(hana::sizeof_(1) == sizeof(1), "");
static_assert(hana::sizeof_(hana::type_c<int>) == sizeof(int), "");

int main() {}