12 lines
225 B
Plaintext
Raw Normal View History

2018-04-23 21:13:27 +02:00
2020-08-30 11:54:41 +02:00
#if __cplusplus < 201103L && !defined(_MSC_VER)
# error "invalid standard value"
#endif
2018-04-23 21:13:27 +02:00
#include <type_traits>
int main(int argc, char** argv)
{
using returnv = std::integral_constant<int, 0>;
return returnv::value;
}