mirror of
https://github.com/boostorg/typeof.git
synced 2025-11-16 23:49:40 +01:00
13 lines
471 B
C++
Executable File
13 lines
471 B
C++
Executable File
#include "test.hpp"
|
|
#include BOOST_TYPEOF_INCREMENT_REGISTRATION_GROUP()
|
|
|
|
struct x{};
|
|
BOOST_TYPEOF_REGISTER_TYPE(x)
|
|
|
|
BOOST_STATIC_ASSERT(boost::type_of::test<x*>::value);
|
|
BOOST_STATIC_ASSERT(boost::type_of::test<x&>::value);
|
|
BOOST_STATIC_ASSERT(boost::type_of::test<x[20]>::value);
|
|
BOOST_STATIC_ASSERT(boost::type_of::test<const x>::value);
|
|
BOOST_STATIC_ASSERT(boost::type_of::test<volatile x>::value);
|
|
BOOST_STATIC_ASSERT(boost::type_of::test<volatile const x>::value);
|