1
0
mirror of https://github.com/php/php-src.git synced 2026-04-24 00:18:23 +02:00
Files
archived-php-src/Zend/tests/bug67436/b.inc
T
2020-02-03 22:52:20 +01:00

11 lines
180 B
PHP

<?php
class b extends a {
private function __invoke() {}
public function test($arg = c::TESTCONSTANT) {
echo __METHOD__ . "()\n";
parent::test();
}
}