2
0
mirror of https://github.com/boostorg/hana.git synced 2026-02-05 09:52:10 +00:00
Files
hana/example/type/construct.cpp
2014-08-30 17:18:26 -04:00

28 lines
584 B
C++

/*
@copyright Louis Dionne 2014
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/detail/assert.hpp>
#include <boost/hana/type.hpp>
#include <string>
using namespace boost::hana;
//! [main]
struct Person {
std::string name;
unsigned int age;
};
bool operator==(Person x, Person y)
{ return x.name == y.name && x.age == y.age; }
int main() {
Person john{"John Doe", 30};
BOOST_HANA_RUNTIME_ASSERT(type<Person>("John Doe", 30u) == john);
}
//! [main]