1
0
mirror of https://github.com/php/php-src.git synced 2026-04-21 15:08:16 +02:00
Files
archived-php-src/Zend/tests/match/042.phpt
T
2020-07-09 23:52:17 +02:00

23 lines
445 B
PHP

--TEST--
Match expression with undefined variable as expression
--FILE--
<?php
var_dump(match ($undefinedVariable) {
null => 'null',
default => 'default',
});
var_dump(match ($undefinedVariable) {
1, 2, 3, 4, 5 => 'foo',
default => 'bar',
});
?>
--EXPECTF--
Warning: Undefined variable $undefinedVariable in %s.php on line 3
string(4) "null"
Warning: Undefined variable $undefinedVariable in %s.php on line 8
string(3) "bar"