xlnt/third-party/cxxtest/test/int64.cpp

9 lines
127 B
C++
Raw Normal View History

//
// This program is used to check if the compiler supports __int64
//
int main()
{
__int64 ll = 0;
return (int)ll;
}