php-8.0.30-src/Zend/tests/match/005.phpt

13 lines
128 B
PHP

--TEST--
Match expression discarding result
--FILE--
<?php
match (1) {
1 => print "Executed\n",
};
?>
--EXPECT--
Executed