Ticket #9913: a.cpp

File a.cpp, 142 bytes (added by Nevin Liber <nevin@…>, 9 years ago)

Reproducible test case

Line 
1#include <boost/type_traits.hpp>
2#include <iostream>
3
4enum class E {};
5
6int main()
7{ std::cout << boost::has_complement<E>() << std::endl; }
8