Ticket #9971: main.cpp

File main.cpp, 144 bytes (added by ytj000@…, 8 years ago)

example.cpp

Line 
1#include<boost/mpl/string.hpp>
2
3int main() {
4 using H = boost::mpl::string<'h'>;
5 static_assert(boost::mpl::c_str<H>::value[0] == 'h', "");
6}