- Output for 8.1.0 - 8.1.33, 8.2.0 - 8.2.29, 8.3.5 - 8.3.25, 8.4.1 - 8.4.12
- 5
- Output for 8.0.1 - 8.0.27
- Parse error: syntax error, unexpected token ")" in /in/GTAGR on line 10
Process exited with code 255.
<?php
class C {
public function __construct(private int $y) {}
public function do(int $x) { return $this->y + $x; }
}
$c = new C(2);
$fn = $c->do(...);
print $fn(3);