blob: a97a41ebd48cbcca7bdda8c636c3be929444675a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#if __cplusplus < 201103L && !defined(_MSC_VER)
# error "invalid standard value"
#endif
#include <type_traits>
int main(int argc, char** argv)
{
using returnv = std::integral_constant<int, 0>;
return returnv::value;
}
|