mirror of
https://github.com/php/php-src.git
synced 2025-08-20 17:34:35 +02:00
8 lines
104 B
PHP
8 lines
104 B
PHP
<?php
|
|
|
|
class b extends a {
|
|
public function test() {
|
|
echo __METHOD__ . "()\n";
|
|
parent::test();
|
|
}
|
|
}
|