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