3v4l.org

run code in 300+ PHP versions simultaneously
<?php trait T { abstract public function test(int $x); } class P { public function test(string $x) {} } class C extends P { use T; }
Output for 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.27, 8.2.0 - 8.2.17, 8.3.0 - 8.3.4
Fatal error: Declaration of P::test(string $x) must be compatible with T::test(int $x) in /in/4VCIp on line 8
Process exited with code 255.
Output for 7.2.0 - 7.2.34, 7.3.0 - 7.3.33
Fatal error: Declaration of P::test(string $x) must be compatible with T::test(int $x) in /in/4VCIp on line 11
Process exited with code 255.

preferences:
167.24 ms | 401 KiB | 187 Q