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