mirror of
https://github.com/php/php-src.git
synced 2024-11-24 18:34:21 +08:00
16 lines
197 B
PHP
16 lines
197 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
|