mirror of
https://github.com/boostorg/tti.git
synced 2026-01-26 07:02:14 +00:00
14 lines
189 B
C++
14 lines
189 B
C++
#include "TestHasStaticMember.hpp"
|
|
#include <boost/mpl/assert.hpp>
|
|
|
|
int main()
|
|
{
|
|
|
|
// Wrong enclosing type for DSMember
|
|
|
|
BOOST_MPL_ASSERT((AnotherType,short));
|
|
|
|
return 0;
|
|
|
|
}
|