Updates to Tomato RAF including NGINX && PHP
[tomato.git] / release / src / router / php / Zend / tests / not_002.phpt
blobdf27772a73809987bbed446d7ef72a5d177af56c
1 --TEST--
2 bitwise NOT and arrays
3 --FILE--
4 <?php
6 $a = array(1,2,3);
7 $b = array(1,2);
9 $a = ~$b;
10 var_dump($a);
12 echo "Done\n";
14 --EXPECTF--     
15 Fatal error: Unsupported operand types in %s on line %d