summaryrefslogtreecommitdiff
path: root/Tests/FindBoost/TestHeaders/main.cxx
blob: 7844de48fa8eb57cc3dbea037f761cfbf53559ad (plain)
1
2
3
4
5
6
7
8
9
10
#include <boost/any.hpp>

int main()
{
  boost::any a;
  a = 5;
  a = std::string("A string");

  return 0;
}