10 lines
176 B
Plaintext
Raw Normal View History

2018-04-23 21:13:27 +02:00
#include <type_traits>
int main(int argc, char** argv)
{
2020-08-30 11:54:41 +02:00
// Verify that we have at least c++11
2018-04-23 21:13:27 +02:00
using returnv = std::integral_constant<int, 0>;
return returnv::value;
}