mirror of
https://github.com/boostorg/typeof.git
synced 2026-01-22 17:52:22 +00:00
7 lines
401 B
C++
Executable File
7 lines
401 B
C++
Executable File
#include "test.hpp"
|
|
|
|
BOOST_STATIC_ASSERT(boost::type_of::test<double(*)()>::value);
|
|
BOOST_STATIC_ASSERT(boost::type_of::test<double(*)(int, double, short, char*, bool, char, float, long, unsigned short)>::value);
|
|
BOOST_STATIC_ASSERT(boost::type_of::test<void(*)()>::value);
|
|
BOOST_STATIC_ASSERT(boost::type_of::test<void(*)(int, double, short, char*, bool, char, float, long, unsigned short)>::value);
|