php-parser/test/code/prettyPrinter/expr/match.test

18 lines
215 B
Plaintext
Raw Normal View History

Match
-----
<?php
echo match (1) {
0, 1 => 'Foo',
// Comment
2 => 'Bar',
default => 'Foo',
};
-----
!!php7
echo match (1) {
0, 1 => 'Foo',
// Comment
2 => 'Bar',
default => 'Foo',
};