php-src/Zend/tests/not_002.phpt
Steph Fox 6d8760677d - killed off UEXPECT
- altered EXPECT for parser errors. This may or may not be a Good Thing.
2008-05-26 14:33:44 +00:00

16 lines
196 B
PHP

--TEST--
bitwise NOT and arrays
--FILE--
<?php
$a = array(1,2,3);
$b = array(1,2);
$a = ~$b;
var_dump($a);
echo "Done\n";
?>
--EXPECTF--
Fatal error: Unsupported operand types in %s on line %d