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

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

  return 0;
}