mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00

RFC: https://wiki.php.net/rfc/property-hooks Co-authored-by: Nikita Popov <nikita.ppv@gmail.com>
10 lines
204 B
PHP
10 lines
204 B
PHP
--TEST--
|
|
Cannot declare final hook in interface
|
|
--FILE--
|
|
<?php
|
|
interface I {
|
|
public $prop { final get; }
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Property hook cannot be both abstract and final in %s on line %d
|