member_function.cpp 576 B

12345678910
  1. // Copyright (C) 2006 Arkadiy Vertleyb
  2. // Use, modification and distribution is subject to the Boost Software
  3. // License, Version 1.0. (http://www.boost.org/LICENSE_1_0.txt)
  4. #include "test.hpp"
  5. BOOST_STATIC_ASSERT(boost::type_of::test<double(*)()>::value);
  6. BOOST_STATIC_ASSERT(boost::type_of::test<double(*)(int, double, short, char*, bool, char, float, long, unsigned short)>::value);
  7. BOOST_STATIC_ASSERT(boost::type_of::test<void(*)()>::value);
  8. BOOST_STATIC_ASSERT(boost::type_of::test<void(*)(int, double, short, char*, bool, char, float, long, unsigned short)>::value);