1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 09:12:14 +01:00
Files
archived-php-src/ext/opcache/tests/preload_inheritance_error.inc
2019-02-15 16:56:32 +01:00

10 lines
109 B
PHP

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