22 lines
376 B
PHP
22 lines
376 B
PHP
--TEST--
|
|
Override attribute is not satisfied by unilateral virtual property
|
|
--FILE--
|
|
<?php
|
|
|
|
class A {
|
|
public $prop {
|
|
set {}
|
|
}
|
|
}
|
|
|
|
class B extends A {
|
|
public $prop {
|
|
#[Override]
|
|
get => parent::$prop::get();
|
|
}
|
|
}
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: B::$prop::get() has #[\Override] attribute, but no matching parent method exists in %s on line %d
|