mirror of
https://github.com/boostorg/tti.git
synced 2026-01-25 06:42:25 +00:00
14 lines
282 B
C++
14 lines
282 B
C++
#include "TestHasMemberFunction.hpp"
|
|
#include <boost/mpl/assert.hpp>
|
|
|
|
int main()
|
|
{
|
|
|
|
// Wrong function signature for sFunction
|
|
|
|
BOOST_MPL_ASSERT((tti::has_member_function_sFunction<AnotherType,AType::AnIntType,boost::mpl::vector<short,long,double> >));
|
|
|
|
return 0;
|
|
|
|
}
|