parser/tests/fixtures/0196/code.php

9 lines
58 B
PHP
Raw Normal View History

<?php
$a = 4;
$b = match ($a) {
1,2,3,4 => null
};