Ticket #6858: boost-get-test-ko.cc

File boost-get-test-ko.cc, 158 bytes (added by Roland Levillain <roland@…>, 10 years ago)
Line 
1#include <boost/variant.hpp>
2#include <boost/graph/transitive_closure.hpp>
3
4int main ()
5{
6 boost::variant<int, char> v (42);
7 int i = boost::get<int>(v);
8}