mirror of
https://github.com/danog/parser.git
synced 2024-12-02 09:27:50 +01:00
11 lines
123 B
PHP
11 lines
123 B
PHP
<?php
|
|
|
|
interface A {}
|
|
interface B {}
|
|
interface C {}
|
|
interface D {}
|
|
|
|
function foo(A|(B&C&D) $a): A&(B|C|D) {
|
|
exit(0);
|
|
}
|