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