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

9 lines
133 B
C++
Raw Normal View History

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