<?php
ini_set('zend.exception_ignore_args', '1');
try {
match (1) { };
} catch (Error $e) { echo $e->getMessage(), PHP_EOL; }
try {
match ("foo bar baz foo bar baz") { };
} catch (Error $e) { echo $e->getMessage(), PHP_EOL; }
Unhandled match case 1
Unhandled match case 'foo bar baz foo...'
Unhandled match case of type int
Unhandled match case of type string