parser/tests/fixtures/0211/code.php

12 lines
138 B
PHP
Raw Normal View History

<?php
match ($s) {
1 => 2,
3, => 4,
5,6 => 4,
9, 123, => 4,
_ => 43, // _ here is a constant
default => 124,
};