1
0
mirror of https://github.com/php/php-src.git synced 2026-04-19 14:01:01 +02:00
Files
archived-php-src/Zend/tests/match/005.phpt
2020-07-09 23:52:17 +02:00

13 lines
128 B
PHP

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