- Output for 8.2.0 - 8.2.28, 8.3.0 - 8.3.22, 8.4.1 - 8.4.8
- Okey :)
<?php
abstract class Base {
protected static string $message;
public static function f() : void {
echo static::$message;
}
}
final class Test extends Base {
protected static string $message = "Okey :)";
}
Test::f();
?>