10 lines
173 B
C++
Raw Normal View History

2019-11-11 23:01:05 +01:00
#include <type_traits>
int main(int argc, char** argv)
{
// make sure we have c++11 enabled
using returnv = std::integral_constant<int, 0>;
return returnv::value;
}