()
| 808 | class ArrayDestructuringDemo |
| 809 | { |
| 810 | public function demo(): void |
| 811 | { |
| 812 | /** @var list<Pen> */ |
| 813 | [$first, $second] = getUnknownValue(); |
| 814 | $first->write(); // destructured element type |
| 815 | } |
| 816 | } |
| 817 | |
| 818 |
nothing calls this directly
no test coverage detected