123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590 |
- --TEST--
- Test >> operator : 64bit long tests
- --SKIPIF--
- <?php
- if (PHP_INT_SIZE != 8) die("skip this test is for 64bit platform only");
- ?>
- --FILE--
- <?php
- define("MAX_64Bit", 9223372036854775807);
- define("MAX_32Bit", 2147483647);
- define("MIN_64Bit", -9223372036854775807 - 1);
- define("MIN_32Bit", -2147483647 - 1);
- $longVals = array(
- MAX_64Bit, MIN_64Bit, MAX_32Bit, MIN_32Bit, MAX_64Bit - MAX_32Bit, MIN_64Bit - MIN_32Bit,
- MAX_32Bit + 1, MIN_32Bit - 1, MAX_32Bit * 2, (MAX_32Bit * 2) + 1, (MAX_32Bit * 2) - 1,
- MAX_64Bit -1, MAX_64Bit + 1, MIN_64Bit + 1, MIN_64Bit - 1
- );
- $otherVals = array(0, 1, -1, 7, 9, 65, -44, MAX_32Bit, MAX_64Bit);
- error_reporting(E_ERROR);
- foreach ($longVals as $longVal) {
- foreach($otherVals as $otherVal) {
- echo "--- testing: $longVal >> $otherVal ---\n";
- try {
- var_dump($longVal>>$otherVal);
- } catch (ArithmeticError $e) {
- echo "Exception: " . $e->getMessage() . "\n";
- }
- }
- }
- foreach ($otherVals as $otherVal) {
- foreach($longVals as $longVal) {
- echo "--- testing: $otherVal >> $longVal ---\n";
- try {
- var_dump($otherVal>>$longVal);
- } catch (ArithmeticError $e) {
- echo "Exception: " . $e->getMessage() . "\n";
- }
- }
- }
- ?>
- ===DONE===
- --EXPECT--
- --- testing: 9223372036854775807 >> 0 ---
- int(9223372036854775807)
- --- testing: 9223372036854775807 >> 1 ---
- int(4611686018427387903)
- --- testing: 9223372036854775807 >> -1 ---
- Exception: Bit shift by negative number
- --- testing: 9223372036854775807 >> 7 ---
- int(72057594037927935)
- --- testing: 9223372036854775807 >> 9 ---
- int(18014398509481983)
- --- testing: 9223372036854775807 >> 65 ---
- int(0)
- --- testing: 9223372036854775807 >> -44 ---
- Exception: Bit shift by negative number
- --- testing: 9223372036854775807 >> 2147483647 ---
- int(0)
- --- testing: 9223372036854775807 >> 9223372036854775807 ---
- int(0)
- --- testing: -9223372036854775808 >> 0 ---
- int(-9223372036854775808)
- --- testing: -9223372036854775808 >> 1 ---
- int(-4611686018427387904)
- --- testing: -9223372036854775808 >> -1 ---
- Exception: Bit shift by negative number
- --- testing: -9223372036854775808 >> 7 ---
- int(-72057594037927936)
- --- testing: -9223372036854775808 >> 9 ---
- int(-18014398509481984)
- --- testing: -9223372036854775808 >> 65 ---
- int(-1)
- --- testing: -9223372036854775808 >> -44 ---
- Exception: Bit shift by negative number
- --- testing: -9223372036854775808 >> 2147483647 ---
- int(-1)
- --- testing: -9223372036854775808 >> 9223372036854775807 ---
- int(-1)
- --- testing: 2147483647 >> 0 ---
- int(2147483647)
- --- testing: 2147483647 >> 1 ---
- int(1073741823)
- --- testing: 2147483647 >> -1 ---
- Exception: Bit shift by negative number
- --- testing: 2147483647 >> 7 ---
- int(16777215)
- --- testing: 2147483647 >> 9 ---
- int(4194303)
- --- testing: 2147483647 >> 65 ---
- int(0)
- --- testing: 2147483647 >> -44 ---
- Exception: Bit shift by negative number
- --- testing: 2147483647 >> 2147483647 ---
- int(0)
- --- testing: 2147483647 >> 9223372036854775807 ---
- int(0)
- --- testing: -2147483648 >> 0 ---
- int(-2147483648)
- --- testing: -2147483648 >> 1 ---
- int(-1073741824)
- --- testing: -2147483648 >> -1 ---
- Exception: Bit shift by negative number
- --- testing: -2147483648 >> 7 ---
- int(-16777216)
- --- testing: -2147483648 >> 9 ---
- int(-4194304)
- --- testing: -2147483648 >> 65 ---
- int(-1)
- --- testing: -2147483648 >> -44 ---
- Exception: Bit shift by negative number
- --- testing: -2147483648 >> 2147483647 ---
- int(-1)
- --- testing: -2147483648 >> 9223372036854775807 ---
- int(-1)
- --- testing: 9223372034707292160 >> 0 ---
- int(9223372034707292160)
- --- testing: 9223372034707292160 >> 1 ---
- int(4611686017353646080)
- --- testing: 9223372034707292160 >> -1 ---
- Exception: Bit shift by negative number
- --- testing: 9223372034707292160 >> 7 ---
- int(72057594021150720)
- --- testing: 9223372034707292160 >> 9 ---
- int(18014398505287680)
- --- testing: 9223372034707292160 >> 65 ---
- int(0)
- --- testing: 9223372034707292160 >> -44 ---
- Exception: Bit shift by negative number
- --- testing: 9223372034707292160 >> 2147483647 ---
- int(0)
- --- testing: 9223372034707292160 >> 9223372036854775807 ---
- int(0)
- --- testing: -9223372034707292160 >> 0 ---
- int(-9223372034707292160)
- --- testing: -9223372034707292160 >> 1 ---
- int(-4611686017353646080)
- --- testing: -9223372034707292160 >> -1 ---
- Exception: Bit shift by negative number
- --- testing: -9223372034707292160 >> 7 ---
- int(-72057594021150720)
- --- testing: -9223372034707292160 >> 9 ---
- int(-18014398505287680)
- --- testing: -9223372034707292160 >> 65 ---
- int(-1)
- --- testing: -9223372034707292160 >> -44 ---
- Exception: Bit shift by negative number
- --- testing: -9223372034707292160 >> 2147483647 ---
- int(-1)
- --- testing: -9223372034707292160 >> 9223372036854775807 ---
- int(-1)
- --- testing: 2147483648 >> 0 ---
- int(2147483648)
- --- testing: 2147483648 >> 1 ---
- int(1073741824)
- --- testing: 2147483648 >> -1 ---
- Exception: Bit shift by negative number
- --- testing: 2147483648 >> 7 ---
- int(16777216)
- --- testing: 2147483648 >> 9 ---
- int(4194304)
- --- testing: 2147483648 >> 65 ---
- int(0)
- --- testing: 2147483648 >> -44 ---
- Exception: Bit shift by negative number
- --- testing: 2147483648 >> 2147483647 ---
- int(0)
- --- testing: 2147483648 >> 9223372036854775807 ---
- int(0)
- --- testing: -2147483649 >> 0 ---
- int(-2147483649)
- --- testing: -2147483649 >> 1 ---
- int(-1073741825)
- --- testing: -2147483649 >> -1 ---
- Exception: Bit shift by negative number
- --- testing: -2147483649 >> 7 ---
- int(-16777217)
- --- testing: -2147483649 >> 9 ---
- int(-4194305)
- --- testing: -2147483649 >> 65 ---
- int(-1)
- --- testing: -2147483649 >> -44 ---
- Exception: Bit shift by negative number
- --- testing: -2147483649 >> 2147483647 ---
- int(-1)
- --- testing: -2147483649 >> 9223372036854775807 ---
- int(-1)
- --- testing: 4294967294 >> 0 ---
- int(4294967294)
- --- testing: 4294967294 >> 1 ---
- int(2147483647)
- --- testing: 4294967294 >> -1 ---
- Exception: Bit shift by negative number
- --- testing: 4294967294 >> 7 ---
- int(33554431)
- --- testing: 4294967294 >> 9 ---
- int(8388607)
- --- testing: 4294967294 >> 65 ---
- int(0)
- --- testing: 4294967294 >> -44 ---
- Exception: Bit shift by negative number
- --- testing: 4294967294 >> 2147483647 ---
- int(0)
- --- testing: 4294967294 >> 9223372036854775807 ---
- int(0)
- --- testing: 4294967295 >> 0 ---
- int(4294967295)
- --- testing: 4294967295 >> 1 ---
- int(2147483647)
- --- testing: 4294967295 >> -1 ---
- Exception: Bit shift by negative number
- --- testing: 4294967295 >> 7 ---
- int(33554431)
- --- testing: 4294967295 >> 9 ---
- int(8388607)
- --- testing: 4294967295 >> 65 ---
- int(0)
- --- testing: 4294967295 >> -44 ---
- Exception: Bit shift by negative number
- --- testing: 4294967295 >> 2147483647 ---
- int(0)
- --- testing: 4294967295 >> 9223372036854775807 ---
- int(0)
- --- testing: 4294967293 >> 0 ---
- int(4294967293)
- --- testing: 4294967293 >> 1 ---
- int(2147483646)
- --- testing: 4294967293 >> -1 ---
- Exception: Bit shift by negative number
- --- testing: 4294967293 >> 7 ---
- int(33554431)
- --- testing: 4294967293 >> 9 ---
- int(8388607)
- --- testing: 4294967293 >> 65 ---
- int(0)
- --- testing: 4294967293 >> -44 ---
- Exception: Bit shift by negative number
- --- testing: 4294967293 >> 2147483647 ---
- int(0)
- --- testing: 4294967293 >> 9223372036854775807 ---
- int(0)
- --- testing: 9223372036854775806 >> 0 ---
- int(9223372036854775806)
- --- testing: 9223372036854775806 >> 1 ---
- int(4611686018427387903)
- --- testing: 9223372036854775806 >> -1 ---
- Exception: Bit shift by negative number
- --- testing: 9223372036854775806 >> 7 ---
- int(72057594037927935)
- --- testing: 9223372036854775806 >> 9 ---
- int(18014398509481983)
- --- testing: 9223372036854775806 >> 65 ---
- int(0)
- --- testing: 9223372036854775806 >> -44 ---
- Exception: Bit shift by negative number
- --- testing: 9223372036854775806 >> 2147483647 ---
- int(0)
- --- testing: 9223372036854775806 >> 9223372036854775807 ---
- int(0)
- --- testing: 9.2233720368548E+18 >> 0 ---
- int(-9223372036854775808)
- --- testing: 9.2233720368548E+18 >> 1 ---
- int(-4611686018427387904)
- --- testing: 9.2233720368548E+18 >> -1 ---
- Exception: Bit shift by negative number
- --- testing: 9.2233720368548E+18 >> 7 ---
- int(-72057594037927936)
- --- testing: 9.2233720368548E+18 >> 9 ---
- int(-18014398509481984)
- --- testing: 9.2233720368548E+18 >> 65 ---
- int(-1)
- --- testing: 9.2233720368548E+18 >> -44 ---
- Exception: Bit shift by negative number
- --- testing: 9.2233720368548E+18 >> 2147483647 ---
- int(-1)
- --- testing: 9.2233720368548E+18 >> 9223372036854775807 ---
- int(-1)
- --- testing: -9223372036854775807 >> 0 ---
- int(-9223372036854775807)
- --- testing: -9223372036854775807 >> 1 ---
- int(-4611686018427387904)
- --- testing: -9223372036854775807 >> -1 ---
- Exception: Bit shift by negative number
- --- testing: -9223372036854775807 >> 7 ---
- int(-72057594037927936)
- --- testing: -9223372036854775807 >> 9 ---
- int(-18014398509481984)
- --- testing: -9223372036854775807 >> 65 ---
- int(-1)
- --- testing: -9223372036854775807 >> -44 ---
- Exception: Bit shift by negative number
- --- testing: -9223372036854775807 >> 2147483647 ---
- int(-1)
- --- testing: -9223372036854775807 >> 9223372036854775807 ---
- int(-1)
- --- testing: -9.2233720368548E+18 >> 0 ---
- int(-9223372036854775808)
- --- testing: -9.2233720368548E+18 >> 1 ---
- int(-4611686018427387904)
- --- testing: -9.2233720368548E+18 >> -1 ---
- Exception: Bit shift by negative number
- --- testing: -9.2233720368548E+18 >> 7 ---
- int(-72057594037927936)
- --- testing: -9.2233720368548E+18 >> 9 ---
- int(-18014398509481984)
- --- testing: -9.2233720368548E+18 >> 65 ---
- int(-1)
- --- testing: -9.2233720368548E+18 >> -44 ---
- Exception: Bit shift by negative number
- --- testing: -9.2233720368548E+18 >> 2147483647 ---
- int(-1)
- --- testing: -9.2233720368548E+18 >> 9223372036854775807 ---
- int(-1)
- --- testing: 0 >> 9223372036854775807 ---
- int(0)
- --- testing: 0 >> -9223372036854775808 ---
- Exception: Bit shift by negative number
- --- testing: 0 >> 2147483647 ---
- int(0)
- --- testing: 0 >> -2147483648 ---
- Exception: Bit shift by negative number
- --- testing: 0 >> 9223372034707292160 ---
- int(0)
- --- testing: 0 >> -9223372034707292160 ---
- Exception: Bit shift by negative number
- --- testing: 0 >> 2147483648 ---
- int(0)
- --- testing: 0 >> -2147483649 ---
- Exception: Bit shift by negative number
- --- testing: 0 >> 4294967294 ---
- int(0)
- --- testing: 0 >> 4294967295 ---
- int(0)
- --- testing: 0 >> 4294967293 ---
- int(0)
- --- testing: 0 >> 9223372036854775806 ---
- int(0)
- --- testing: 0 >> 9.2233720368548E+18 ---
- Exception: Bit shift by negative number
- --- testing: 0 >> -9223372036854775807 ---
- Exception: Bit shift by negative number
- --- testing: 0 >> -9.2233720368548E+18 ---
- Exception: Bit shift by negative number
- --- testing: 1 >> 9223372036854775807 ---
- int(0)
- --- testing: 1 >> -9223372036854775808 ---
- Exception: Bit shift by negative number
- --- testing: 1 >> 2147483647 ---
- int(0)
- --- testing: 1 >> -2147483648 ---
- Exception: Bit shift by negative number
- --- testing: 1 >> 9223372034707292160 ---
- int(0)
- --- testing: 1 >> -9223372034707292160 ---
- Exception: Bit shift by negative number
- --- testing: 1 >> 2147483648 ---
- int(0)
- --- testing: 1 >> -2147483649 ---
- Exception: Bit shift by negative number
- --- testing: 1 >> 4294967294 ---
- int(0)
- --- testing: 1 >> 4294967295 ---
- int(0)
- --- testing: 1 >> 4294967293 ---
- int(0)
- --- testing: 1 >> 9223372036854775806 ---
- int(0)
- --- testing: 1 >> 9.2233720368548E+18 ---
- Exception: Bit shift by negative number
- --- testing: 1 >> -9223372036854775807 ---
- Exception: Bit shift by negative number
- --- testing: 1 >> -9.2233720368548E+18 ---
- Exception: Bit shift by negative number
- --- testing: -1 >> 9223372036854775807 ---
- int(-1)
- --- testing: -1 >> -9223372036854775808 ---
- Exception: Bit shift by negative number
- --- testing: -1 >> 2147483647 ---
- int(-1)
- --- testing: -1 >> -2147483648 ---
- Exception: Bit shift by negative number
- --- testing: -1 >> 9223372034707292160 ---
- int(-1)
- --- testing: -1 >> -9223372034707292160 ---
- Exception: Bit shift by negative number
- --- testing: -1 >> 2147483648 ---
- int(-1)
- --- testing: -1 >> -2147483649 ---
- Exception: Bit shift by negative number
- --- testing: -1 >> 4294967294 ---
- int(-1)
- --- testing: -1 >> 4294967295 ---
- int(-1)
- --- testing: -1 >> 4294967293 ---
- int(-1)
- --- testing: -1 >> 9223372036854775806 ---
- int(-1)
- --- testing: -1 >> 9.2233720368548E+18 ---
- Exception: Bit shift by negative number
- --- testing: -1 >> -9223372036854775807 ---
- Exception: Bit shift by negative number
- --- testing: -1 >> -9.2233720368548E+18 ---
- Exception: Bit shift by negative number
- --- testing: 7 >> 9223372036854775807 ---
- int(0)
- --- testing: 7 >> -9223372036854775808 ---
- Exception: Bit shift by negative number
- --- testing: 7 >> 2147483647 ---
- int(0)
- --- testing: 7 >> -2147483648 ---
- Exception: Bit shift by negative number
- --- testing: 7 >> 9223372034707292160 ---
- int(0)
- --- testing: 7 >> -9223372034707292160 ---
- Exception: Bit shift by negative number
- --- testing: 7 >> 2147483648 ---
- int(0)
- --- testing: 7 >> -2147483649 ---
- Exception: Bit shift by negative number
- --- testing: 7 >> 4294967294 ---
- int(0)
- --- testing: 7 >> 4294967295 ---
- int(0)
- --- testing: 7 >> 4294967293 ---
- int(0)
- --- testing: 7 >> 9223372036854775806 ---
- int(0)
- --- testing: 7 >> 9.2233720368548E+18 ---
- Exception: Bit shift by negative number
- --- testing: 7 >> -9223372036854775807 ---
- Exception: Bit shift by negative number
- --- testing: 7 >> -9.2233720368548E+18 ---
- Exception: Bit shift by negative number
- --- testing: 9 >> 9223372036854775807 ---
- int(0)
- --- testing: 9 >> -9223372036854775808 ---
- Exception: Bit shift by negative number
- --- testing: 9 >> 2147483647 ---
- int(0)
- --- testing: 9 >> -2147483648 ---
- Exception: Bit shift by negative number
- --- testing: 9 >> 9223372034707292160 ---
- int(0)
- --- testing: 9 >> -9223372034707292160 ---
- Exception: Bit shift by negative number
- --- testing: 9 >> 2147483648 ---
- int(0)
- --- testing: 9 >> -2147483649 ---
- Exception: Bit shift by negative number
- --- testing: 9 >> 4294967294 ---
- int(0)
- --- testing: 9 >> 4294967295 ---
- int(0)
- --- testing: 9 >> 4294967293 ---
- int(0)
- --- testing: 9 >> 9223372036854775806 ---
- int(0)
- --- testing: 9 >> 9.2233720368548E+18 ---
- Exception: Bit shift by negative number
- --- testing: 9 >> -9223372036854775807 ---
- Exception: Bit shift by negative number
- --- testing: 9 >> -9.2233720368548E+18 ---
- Exception: Bit shift by negative number
- --- testing: 65 >> 9223372036854775807 ---
- int(0)
- --- testing: 65 >> -9223372036854775808 ---
- Exception: Bit shift by negative number
- --- testing: 65 >> 2147483647 ---
- int(0)
- --- testing: 65 >> -2147483648 ---
- Exception: Bit shift by negative number
- --- testing: 65 >> 9223372034707292160 ---
- int(0)
- --- testing: 65 >> -9223372034707292160 ---
- Exception: Bit shift by negative number
- --- testing: 65 >> 2147483648 ---
- int(0)
- --- testing: 65 >> -2147483649 ---
- Exception: Bit shift by negative number
- --- testing: 65 >> 4294967294 ---
- int(0)
- --- testing: 65 >> 4294967295 ---
- int(0)
- --- testing: 65 >> 4294967293 ---
- int(0)
- --- testing: 65 >> 9223372036854775806 ---
- int(0)
- --- testing: 65 >> 9.2233720368548E+18 ---
- Exception: Bit shift by negative number
- --- testing: 65 >> -9223372036854775807 ---
- Exception: Bit shift by negative number
- --- testing: 65 >> -9.2233720368548E+18 ---
- Exception: Bit shift by negative number
- --- testing: -44 >> 9223372036854775807 ---
- int(-1)
- --- testing: -44 >> -9223372036854775808 ---
- Exception: Bit shift by negative number
- --- testing: -44 >> 2147483647 ---
- int(-1)
- --- testing: -44 >> -2147483648 ---
- Exception: Bit shift by negative number
- --- testing: -44 >> 9223372034707292160 ---
- int(-1)
- --- testing: -44 >> -9223372034707292160 ---
- Exception: Bit shift by negative number
- --- testing: -44 >> 2147483648 ---
- int(-1)
- --- testing: -44 >> -2147483649 ---
- Exception: Bit shift by negative number
- --- testing: -44 >> 4294967294 ---
- int(-1)
- --- testing: -44 >> 4294967295 ---
- int(-1)
- --- testing: -44 >> 4294967293 ---
- int(-1)
- --- testing: -44 >> 9223372036854775806 ---
- int(-1)
- --- testing: -44 >> 9.2233720368548E+18 ---
- Exception: Bit shift by negative number
- --- testing: -44 >> -9223372036854775807 ---
- Exception: Bit shift by negative number
- --- testing: -44 >> -9.2233720368548E+18 ---
- Exception: Bit shift by negative number
- --- testing: 2147483647 >> 9223372036854775807 ---
- int(0)
- --- testing: 2147483647 >> -9223372036854775808 ---
- Exception: Bit shift by negative number
- --- testing: 2147483647 >> 2147483647 ---
- int(0)
- --- testing: 2147483647 >> -2147483648 ---
- Exception: Bit shift by negative number
- --- testing: 2147483647 >> 9223372034707292160 ---
- int(0)
- --- testing: 2147483647 >> -9223372034707292160 ---
- Exception: Bit shift by negative number
- --- testing: 2147483647 >> 2147483648 ---
- int(0)
- --- testing: 2147483647 >> -2147483649 ---
- Exception: Bit shift by negative number
- --- testing: 2147483647 >> 4294967294 ---
- int(0)
- --- testing: 2147483647 >> 4294967295 ---
- int(0)
- --- testing: 2147483647 >> 4294967293 ---
- int(0)
- --- testing: 2147483647 >> 9223372036854775806 ---
- int(0)
- --- testing: 2147483647 >> 9.2233720368548E+18 ---
- Exception: Bit shift by negative number
- --- testing: 2147483647 >> -9223372036854775807 ---
- Exception: Bit shift by negative number
- --- testing: 2147483647 >> -9.2233720368548E+18 ---
- Exception: Bit shift by negative number
- --- testing: 9223372036854775807 >> 9223372036854775807 ---
- int(0)
- --- testing: 9223372036854775807 >> -9223372036854775808 ---
- Exception: Bit shift by negative number
- --- testing: 9223372036854775807 >> 2147483647 ---
- int(0)
- --- testing: 9223372036854775807 >> -2147483648 ---
- Exception: Bit shift by negative number
- --- testing: 9223372036854775807 >> 9223372034707292160 ---
- int(0)
- --- testing: 9223372036854775807 >> -9223372034707292160 ---
- Exception: Bit shift by negative number
- --- testing: 9223372036854775807 >> 2147483648 ---
- int(0)
- --- testing: 9223372036854775807 >> -2147483649 ---
- Exception: Bit shift by negative number
- --- testing: 9223372036854775807 >> 4294967294 ---
- int(0)
- --- testing: 9223372036854775807 >> 4294967295 ---
- int(0)
- --- testing: 9223372036854775807 >> 4294967293 ---
- int(0)
- --- testing: 9223372036854775807 >> 9223372036854775806 ---
- int(0)
- --- testing: 9223372036854775807 >> 9.2233720368548E+18 ---
- Exception: Bit shift by negative number
- --- testing: 9223372036854775807 >> -9223372036854775807 ---
- Exception: Bit shift by negative number
- --- testing: 9223372036854775807 >> -9.2233720368548E+18 ---
- Exception: Bit shift by negative number
- ===DONE===
|