Files
cpp-thirdparty/noarch/lib/py/cxxtest/test/longlong.cpp
Bassem Girgis 81b4b9e273 Initial commit
2018-12-20 17:34:07 -06:00

9 lines
133 B
C++

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