1--TEST-- 2Match expression discarding result 3--FILE-- 4<?php 5 6match (1) { 7 1 => print "Executed\n", 8}; 9 10?> 11--EXPECT-- 12Executed 13