2016-07-09 11:21:54 +02:00

11 lines
110 B
C++

#include <boost/any.hpp>
int main()
{
boost::any a;
a = 5;
a = std::string("A string");
return 0;
}