mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
9 lines
133 B
C++
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;
|
||
|
}
|