summaryrefslogtreecommitdiff
path: root/Zend/tests/match/005.phpt
blob: cc72739f432bf44591707a08cb53a3608c70c3ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--TEST--
Match expression discarding result
--FILE--
<?php

match (1) {
    1 => print "Executed\n",
};

?>
--EXPECT--
Executed