mirror of
https://github.com/php/php-src.git
synced 2025-08-18 15:08:55 +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();
|
|
}
|
|
}
|