- Output for 8.4.1 - 8.4.3
- Hello world
- Output for 8.2.0 - 8.2.27, 8.3.0 - 8.3.16
- Parse error: syntax error, unexpected token "->" in /in/b6Rf3 on line 15
Process exited with code 255.
<?php
class A {
public function __construct(
private Closure $callback
) {}
public function show(): void {
($this->callback)();
}
}
new A(function() {
echo 'Hello world';
})->show();