blob: 7844de48fa8eb57cc3dbea037f761cfbf53559ad [file] [log] [blame]
#include <boost/any.hpp>
int main()
{
boost::any a;
a = 5;
a = std::string("A string");
return 0;
}