mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-10 03:01:01 +00:00
10 lines
177 B
PHP
10 lines
177 B
PHP
<?php
|
|
class Base
|
|
{
|
|
public final function test() {}
|
|
}
|
|
class Derive extends Base
|
|
{
|
|
public function test() {} // Ошибка! Нельзя переопределить!
|
|
}
|