php-8.0.30-src/ext/opcache/tests/preload_inheritance_error.inc

10 lines
109 B
PHP

<?php
interface A {
public function foo();
}
class B implements A {
public function foo($bar) {}
}